tree-sitter-sql icon indicating copy to clipboard operation
tree-sitter-sql copied to clipboard

CREATE FUNCTION with no parameters

Open malthe opened this issue 1 year ago • 0 comments

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.

malthe avatar Feb 22 '24 09:02 malthe