You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BTW
if we parse the new sql SELECT * FROM t WHERE js#>>'{a,b,1}' <> 'bar'
JSQLParser will recognize it as a wrong Bitwise operation in the AST:
the collumn name is js#, and the operator is >>.
Description:
SQL Example:
Original SQL:
Error 1:
In the AST, the filter likes this:
js #>> ('{a,b,1}' <> 'bar')
but what we need is:
(js #>> '{a,b,1}') <> 'bar'
Error 2:
JSQLParser generates the new sql:
but what we need is:
SELECT * FROM t WHERE js #>> '{a,b,1}' <> 'bar'
JSQLParser lost the blank spaces.
Software Information:
The text was updated successfully, but these errors were encountered: