Curious what the thoughts are on supporting a trailing comma in SQL? Snowflake just announced support for this in their dialect.
Example:
SELECT emp_id,
name,
dept,
FROM employees;
This doesn't appear to be handled by tree-sitter-sql yet(as it was just announced) but curious if this is something tree-sitter-sql wants to support? Or would it be better to make a dialect-specific repo?
Curious what the thoughts are on supporting a trailing comma in SQL? Snowflake just announced support for this in their dialect.
Example:
This doesn't appear to be handled by
tree-sitter-sqlyet(as it was just announced) but curious if this is something tree-sitter-sql wants to support? Or would it be better to make a dialect-specific repo?