This is an automated email from the ASF dual-hosted git repository. kxiao pushed a commit to branch branch-2.0 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 84f53bea3605be46f321d3cf8e6527f78a142d29 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 87570db713..86d2dc97f7 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]
