tree-sitter-sql
tree-sitter-sql copied to clipboard
Improve create index
- Improved the CREATE INDEX statement according to https://www.postgresql.org/docs/current/sql-createindex.html;
- Added
expression_list
,identifier_list
,assignment_expression_list
,column_list
andoption_list
of formseq("(", commaSep1(*), ")")
and use them everywhere to increase the reusability of those rules;