tree-sitter-sql
tree-sitter-sql copied to clipboard
CREATE FUNCTION with no parameters
CREATE FUNCTION add() RETURNS integer
AS 'select 1;'
LANGUAGE SQL;
We get MISSING identifier
but it's perfectly valid to have a function without a parameter.