DerekStride / tree-sitter-sql

SQL grammar for tree-sitter
http://derek.stride.host/tree-sitter-sql/
MIT License
155 stars 52 forks source link

PG: Create Table with Array types #183

Closed matthias-Q closed 1 year ago

matthias-Q commented 1 year ago

Using the [] notation in PostgresSQL, it is possible to create columns that store arrays and matrices.

CREATE table tab (
    arr_col INT[],
    mat_col INT[][]
);

This is currently not handled.