PostgreAlterIndex.g4 503 字节
Newer Older
马晓光 已提交
1
grammar PostgreAlterIndex;
C
codefairy08 已提交
2

C
codefairy08 已提交
3
import PostgreKeyword, Keyword, PostgreBase, BaseRule;
马晓光 已提交
4

C
codefairy08 已提交
5 6
alterIndex
    : alterIndexName renameIndex
马晓光 已提交
7 8 9 10
    | alterIndexDependsOnExtension
    | alterIndexSetTableSpace
    ;

C
codefairy08 已提交
11 12
alterIndexName
    : ALTER INDEX (IF EXISTS)? indexName
马晓光 已提交
13 14
    ;

C
codefairy08 已提交
15 16
renameIndex
    : RENAME TO indexName
马晓光 已提交
17 18
    ;

C
codefairy08 已提交
19 20
alterIndexDependsOnExtension
    : ALTER INDEX indexName DEPENDS ON EXTENSION extensionName
马晓光 已提交
21 22
    ;

C
codefairy08 已提交
23 24
alterIndexSetTableSpace
    : ALTER INDEX ALL IN TABLESPACE indexName (OWNED BY rowNames)?
马晓光 已提交
25
    ;