This is an automated email from the ASF dual-hosted git repository.

yiguolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/master by this push:
     new a468085efe [improvement](error info)improve the s3 path err msg #12438
a468085efe is described below

commit a468085efe10cc1afb1e2aff511869a4378aa0af
Author: zy-kkk <zhong...@qq.com>
AuthorDate: Fri Sep 9 09:14:24 2022 +0800

    [improvement](error info)improve the s3 path err msg #12438
---
 fe/fe-core/src/main/java/org/apache/doris/analysis/ExportStmt.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/ExportStmt.java 
b/fe/fe-core/src/main/java/org/apache/doris/analysis/ExportStmt.java
index a7ae8bef3a..e28aa6a700 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/analysis/ExportStmt.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/ExportStmt.java
@@ -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")) {


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org
For additional commands, e-mail: commits-h...@doris.apache.org

Reply via email to