LucaCappelletti94 opened a new issue, #1825:
URL: https://github.com/apache/datafusion-sqlparser-rs/issues/1825
Attempting to parse a function such as the following currently fails with
`ParserError("Expected: ), found: INT")`
```sql
CREATE OR REPLACE FUNCTION check_values_different(int1 INT, int2 INT)
RETURNS BOOLEAN AS $$
BEGIN
IF int1 <> int2 THEN
RETURN TRUE;
ELSE
RETURN FALSE;
END IF;
END;
$$ LANGUAGE plpgsql;
```
I will try to fix this error in a PR soon.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]