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 b2c7a4575c [Bug](dynamic table) set all CreateTableStmt from cup
parser dynamic table flag false (#21706)
b2c7a4575c is described below
commit b2c7a4575c9fb3c420ac09205720ccfaf4d7895e
Author: lihangyu <[email protected]>
AuthorDate: Tue Jul 11 15:23:27 2023 +0800
[Bug](dynamic table) set all CreateTableStmt from cup parser dynamic table
flag false (#21706)
---
fe/fe-core/src/main/cup/sql_parser.cup | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/fe/fe-core/src/main/cup/sql_parser.cup
b/fe/fe-core/src/main/cup/sql_parser.cup
index e3f0508543..ef95f1a5a5 100644
--- a/fe/fe-core/src/main/cup/sql_parser.cup
+++ b/fe/fe-core/src/main/cup/sql_parser.cup
@@ -1846,7 +1846,7 @@ create_stmt ::=
opt_ext_properties:extProperties
{:
RESULT = new CreateTableStmt(ifNotExists, isExternal, name, columns,
null, engineName, keys, partition,
- distribution, tblProperties, extProperties, tableComment, index, true);
+ distribution, tblProperties, extProperties, tableComment, index,
false);
:}
| KW_CREATE opt_external:isExternal KW_TABLE opt_if_not_exists:ifNotExists
table_name:name
LPAREN column_definition_list:columns COMMA
index_definition_list:indexes RPAREN opt_engine:engineName
@@ -1872,7 +1872,7 @@ create_stmt ::=
opt_ext_properties:extProperties
{:
RESULT = new CreateTableStmt(ifNotExists, isExternal, name, columns,
indexes, engineName, keys, partition,
- distribution, tblProperties, extProperties, tableComment, index, true);
+ distribution, tblProperties, extProperties, tableComment, index,
false);
:}
| KW_CREATE opt_external:isExternal KW_TABLE opt_if_not_exists:ifNotExists
table_name:name KW_ENGINE EQUAL ident:engineName
properties:properties opt_comment:tableComment
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]