[improvement](error info)improve the s3 path err msg #12438

This commit is contained in:
zy-kkk
2022-09-09 09:14:24 +08:00
committed by GitHub
parent b4663062da
commit a468085efe

View File

@ -244,7 +244,7 @@ public class ExportStmt extends StatementBase {
}
} else if (type == StorageBackend.StorageType.S3) {
if (schema == null || !schema.equalsIgnoreCase("s3")) {
throw new AnalysisException("Invalid export path. please use valid 'S3://' path.");
throw new AnalysisException("Invalid export path. please use valid 's3://' path.");
}
} else if (type == StorageBackend.StorageType.HDFS) {
if (schema == null || !schema.equalsIgnoreCase("hdfs")) {