Commit 7138ec8c authored by tristaZero's avatar tristaZero
Browse files

use tableNames

parent 18d7325b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ privilegeType_
    ;

onObjectClause_
    : TABLE? tableName (COMMA_ tableName)*
    : TABLE? tableNames
    | DATABASE
    | SCHEMA
    | DOMAIN
+2 −2
Original line number Diff line number Diff line
@@ -36,7 +36,7 @@ alterIndex
    ;

dropTable
    : DROP TABLE (IF EXISTS)? tableName (COMMA_ tableName)*
    : DROP TABLE (IF EXISTS)? tableNames
    ;

dropIndex
@@ -91,7 +91,7 @@ likeOption
    ;

inheritClause
    : INHERITS LP_ tableName (COMMA_ tableName)* RP_
    : INHERITS tableNames
    ;

alterTableNameWithAsterisk