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: github-unsubscr...@datafusion.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to