You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by zy...@apache.org on 2023/06/28 02:13:03 UTC

[doris] branch master updated: [typo](nativeInsertStmt) fix object-stored column exception description (#21221)

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

zykkk 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 853fa5f688 [typo](nativeInsertStmt) fix object-stored column exception description (#21221)
853fa5f688 is described below

commit 853fa5f688f4d48386b7ece00c0917de035f53c6
Author: bingquanzhao <bi...@icloud.com>
AuthorDate: Wed Jun 28 10:12:55 2023 +0800

    [typo](nativeInsertStmt) fix object-stored column exception description (#21221)
---
 .../src/main/java/org/apache/doris/analysis/NativeInsertStmt.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fe/fe-core/src/main/java/org/apache/doris/analysis/NativeInsertStmt.java b/fe/fe-core/src/main/java/org/apache/doris/analysis/NativeInsertStmt.java
index fcd85fd80b..43e3c0c7cb 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/analysis/NativeInsertStmt.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/analysis/NativeInsertStmt.java
@@ -454,7 +454,7 @@ public class NativeInsertStmt extends InsertStmt {
             for (Column col : targetTable.getBaseSchema()) {
                 if (col.getType().isObjectStored() && !mentionedColumns.contains(col.getName())) {
                     throw new AnalysisException(" object-stored column " + col.getName()
-                            + " mush in insert into columns");
+                            + " must in insert into columns");
                 }
             }
         }


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