mirror of https://github.com/apache/cassandra
6 lines
341 B
BNF
6 lines
341 B
BNF
create_index_statement::= CREATE [ CUSTOM ] INDEX [ IF NOT EXISTS ] [ index_name ]
|
|
ON table_name '(' index_identifier ')'
|
|
[ USING index_type [ WITH OPTIONS = map_literal ] ]
|
|
index_identifier::= column_name
|
|
| ( KEYS | VALUES | ENTRIES | FULL ) '(' column_name ')'
|
|
index_type::= 'sai' | 'legacy_local_table' | fully_qualified_class_name |