File tree Expand file tree Collapse file tree 1 file changed +13
-13
lines changed
src/main/jjtree/net/sf/jsqlparser/parser Expand file tree Collapse file tree 1 file changed +13
-13
lines changed Original file line number Diff line number Diff line change @@ -8052,19 +8052,19 @@ AlterExpression AlterExpression():
80528052 }
80538053 )
80548054 |
8055- (
8056- ( tk= <K_DISCARD>)
8057- ( tk2= <K_TABLESPACE> ) {
8058- alterExp.setOperation(AlterOperation.DISCARD_TABLESPACE);
8059- }
8060- )
8061- |
8062- (
8063- ( tk= <K_IMPORT> )
8064- ( tk2= <K_TABLESPACE> ) {
8065- alterExp.setOperation(AlterOperation.IMPORT_TABLESPACE);
8066- }
8067- )
8055+ (
8056+ (tk = <K_DISCARD>)
8057+ ( tk2 = <K_TABLESPACE>) {
8058+ alterExp.setOperation(AlterOperation.DISCARD_TABLESPACE);
8059+ }
8060+ )
8061+ |
8062+ (
8063+ (tk = <K_IMPORT>)
8064+ ( tk2 = <K_TABLESPACE>) {
8065+ alterExp.setOperation(AlterOperation.IMPORT_TABLESPACE);
8066+ }
8067+ )
80688068 |
80698069 (<K_AUTO_INCREMENT> {alterExp.setOperation(AlterOperation.SET_TABLE_OPTION);}
80708070 ["=" { alterExp.setUseEqual(true);} ]
You can’t perform that action at this time.
0 commit comments