Support for null-safe equals operator <=>? #1487
-
Hi, I have been testing out your parser for a project and overall it works great but I found that this simple statement is not parsable:
throws the exception
The null-safe equals operator is supported in many commonly used SQL systems, including MariaDB, Snowflake, and Spark SQL. Did I not configure the parser correctly, or there a way to adjust the grammar dialect to handle this operator? Please advise. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Greetings!
JSQLParser is largely RDBMS agnostic with a certain preference to SQL Standard and the Oracle, MS SQL Server and PostgreSQL Dialects.
No, except
The only ways to make it work were: Best regards |
Beta Was this translation helpful? Give feedback.
Greetings!
JSQLParser is largely RDBMS agnostic with a certain preference to SQL Standard and the Oracle, MS SQL Server and PostgreSQL Dialects.
No, except
SQUARED_BRACKET_QUOTATION
, there is no configuration needed. (And this does not apply here.)Especially, there is no configuration of "Dialects".
The only ways to make it work were:
a) Submit a PR implementing this operator (Grammar, Java Code, Tests)
b) OR sponsor an implementation
Best regards
And…