@@ -657,6 +657,11 @@ tableComment
657657 : KW_COMMENT comment=StringLiteral
658658 ;
659659
660+ // dtstack SparkSQL/HiveSQL lifecycle
661+ tableLifecycle
662+ : KW_LIFECYCLE Number
663+ ;
664+
660665createTablePartitionSpec
661666 : KW_PARTITIONED KW_BY (
662667 LPAREN (opt1=createTablePartitionColumnTypeSpec | opt2=createTablePartitionColumnSpec)
@@ -1630,13 +1635,17 @@ Rules for parsing createtable
16301635createTableStatement
16311636 : KW_CREATE temp=KW_TEMPORARY ? trans=KW_TRANSACTIONAL ? ext=KW_EXTERNAL ? KW_TABLE ifNotExists? name=tableNameCreate (
16321637 likeTableOrFile createTablePartitionSpec? tableRowFormat? tableFileFormat? tableLocation? tablePropertiesPrefixed?
1633- | (LPAREN columnNameTypeOrConstraintList RPAREN )? tableComment? createTablePartitionSpec? tableBuckets? tableSkewed? tableRowFormat?
1634- tableFileFormat? tableLocation? tablePropertiesPrefixed? (KW_AS selectStatementWithCTE)?
1638+ | (LPAREN columnNameTypeOrConstraintList RPAREN )? tableComment? tableLifecycle? createTablePartitionSpec? tableBuckets? tableSkewed?
1639+ tableRowFormat? tableFileFormat? tableLocation? tablePropertiesPrefixed? (
1640+ KW_AS selectStatementWithCTE
1641+ )?
16351642 )
16361643 | KW_CREATE mgd=KW_MANAGED KW_TABLE ifNotExists? name=tableNameCreate (
16371644 likeTableOrFile tableRowFormat? tableFileFormat? tableLocation? tablePropertiesPrefixed?
1638- | (LPAREN columnNameTypeOrConstraintList RPAREN )? tableComment? createTablePartitionSpec? tableBuckets? tableSkewed? tableRowFormat?
1639- tableFileFormat? tableLocation? tablePropertiesPrefixed? (KW_AS selectStatementWithCTE)?
1645+ | (LPAREN columnNameTypeOrConstraintList RPAREN )? tableComment? tableLifecycle? createTablePartitionSpec? tableBuckets? tableSkewed?
1646+ tableRowFormat? tableFileFormat? tableLocation? tablePropertiesPrefixed? (
1647+ KW_AS selectStatementWithCTE
1648+ )?
16401649 )
16411650 ;
16421651
@@ -2685,6 +2694,7 @@ nonReserved
26852694 | KW_KILL
26862695 | KW_LAST
26872696 | KW_LEVEL
2697+ | KW_LIFECYCLE
26882698 | KW_LIMIT
26892699 | KW_LINES
26902700 | KW_LOAD
0 commit comments