提交 9e4d6118 编写于 作者: C codefairy08

Add KeyWord import

上级 e47a728b
grammar OracleAlterIndex;
import OracleKeyword, BaseRule;
import OracleKeyword, Keyword, BaseRule;
alterIndex
: ALTER INDEX indexName RENAME TO indexName
......
grammar OracleDropIndex;
import OracleKeyword, BaseRule;
import OracleKeyword, Keyword, BaseRule;
dropIndex
: DROP INDEX indexName
......
grammar OracleDropTable;
import OracleKeyword, BaseRule;
import OracleKeyword, Keyword, BaseRule;
dropTable
: DROP TABLE tableName
......
grammar OracleTruncateTable;
import OracleKeyword, BaseRule;
import OracleKeyword, Keyword, BaseRule;
truncateTable
: TRUNCATE TABLE tableName
......
grammar PostgreAlterIndex;
import PostgreKeyword, PostgreBase, BaseRule;
import PostgreKeyword, Keyword, PostgreBase, BaseRule;
alterIndex
: alterIndexName renameIndex
......
grammar PostgreCreateIndex;
import PostgreKeyword, PostgreBase, BaseRule;
import PostgreKeyword, Keyword, PostgreBase, BaseRule;
createIndex
: CREATE UNIQUE? INDEX CONCURRENTLY? ((IF NOT EXISTS)? indexName)? ON tableName
......
grammar PostgreDropIndex;
import PostgreKeyword, PostgreBase, BaseRule;
import PostgreKeyword, Keyword, PostgreBase, BaseRule;
dropIndex
: DROP INDEX (CONCURRENTLY)? (IF EXISTS)? indexNames
......
grammar PostgreDropTable;
import PostgreKeyword, PostgreBase, BaseRule;
import PostgreKeyword, Keyword,PostgreBase, BaseRule;
dropTable
: DROP TABLE (IF EXISTS)? tableNames
......
grammar PostgreTruncateTable;
import PostgreKeyword, PostgreBase, BaseRule, Symbol;
import PostgreKeyword, Keyword, PostgreBase, BaseRule, Symbol;
truncateTable
: TRUNCATE TABLE? ONLY? tableNameParts
......
grammar SQLServerAlterIndex;
import SQLServerKeyword, SQLServerBase, BaseRule;
import SQLServerKeyword, Keyword, SQLServerBase, BaseRule;
alterIndex
: ALTER INDEX (indexName | ALL) ON tableName
......
grammar SQLServerDropIndex;
import SQLServerKeyword, SQLServerBase, BaseRule;
import SQLServerKeyword, Keyword, SQLServerBase, BaseRule;
dropIndex
: DROP INDEX indexName ON tableName
......
grammar SQLServerDropTable;
import SQLServerKeyword, SQLServerBase, BaseRule;
import SQLServerKeyword, Keyword, SQLServerBase, BaseRule;
dropTable
: DROP TABLE (IF EXISTS)? tableNames
......
grammar SQLServerTruncateTable;
import SQLServerKeyword, SQLServerBase, BaseRule;
import SQLServerKeyword, Keyword, SQLServerBase, BaseRule;
truncateTable
: TRUNCATE TABLE tableName
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册