@@ -1800,19 +1800,6 @@ create_stmt ::=
1800
1800
RESULT = new CreateTableStmt(ifNotExists, isExternal, name, columns, engineName, keys, partition,
1801
1801
distribution, tblProperties, extProperties, tableComment, index);
1802
1802
:}
1803
- | KW_CREATE opt_external:isExternal KW_TABLE opt_if_not_exists:ifNotExists table_name:name
1804
- LPAREN column_definition_list:columns COMMA RPAREN opt_engine:engineName
1805
- opt_keys:keys
1806
- opt_comment:tableComment
1807
- opt_partition:partition
1808
- opt_distribution:distribution
1809
- opt_rollup:index
1810
- opt_properties:tblProperties
1811
- opt_ext_properties:extProperties
1812
- {:
1813
- RESULT = new CreateTableStmt(ifNotExists, isExternal, name, columns, null, engineName, keys, partition,
1814
- distribution, tblProperties, extProperties, tableComment, index);
1815
- :}
1816
1803
| KW_CREATE opt_external:isExternal KW_TABLE opt_if_not_exists:ifNotExists table_name:name
1817
1804
LPAREN column_definition_list:columns COMMA index_definition_list:indexes RPAREN opt_engine:engineName
1818
1805
opt_keys:keys
@@ -1826,19 +1813,6 @@ create_stmt ::=
1826
1813
RESULT = new CreateTableStmt(ifNotExists, isExternal, name, columns, indexes, engineName, keys, partition,
1827
1814
distribution, tblProperties, extProperties, tableComment, index);
1828
1815
:}
1829
- | KW_CREATE opt_external:isExternal KW_TABLE opt_if_not_exists:ifNotExists table_name:name
1830
- LPAREN column_definition_list:columns COMMA index_definition_list:indexes COMMA RPAREN opt_engine:engineName
1831
- opt_keys:keys
1832
- opt_comment:tableComment
1833
- opt_partition:partition
1834
- opt_distribution:distribution
1835
- opt_rollup:index
1836
- opt_properties:tblProperties
1837
- opt_ext_properties:extProperties
1838
- {:
1839
- RESULT = new CreateTableStmt(ifNotExists, isExternal, name, columns, indexes, engineName, keys, partition,
1840
- distribution, tblProperties, extProperties, tableComment, index);
1841
- :}
1842
1816
| KW_CREATE opt_external:isExternal KW_TABLE opt_if_not_exists:ifNotExists table_name:name
1843
1817
opt_col_list:columns
1844
1818
opt_engine:engineName
0 commit comments