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
When updating a Boolean column, the value true is parsed as column.
SQL Example:
UPDATE TestTable SET Column1 ='Tester', Column2 = true WHERE Id ='AAS'
Column1 and Column2 are parsed as a Column object.
Tester is parsed as a StringValue true is parsed as Column object. Why? I expect it to be parsed as BooleanValue or something else value object.
StatementqueryData = CCJSqlParserUtil.parse("UPDATE TestTable SET Column1 = 'Tester', Column2 = true WHERE Id = 'AAS'");
Software Information:
JSqlParser version 5.0 (same problem with the snapshot)
The text was updated successfully, but these errors were encountered:
lucarota
pushed a commit
to lucarota/JSqlParser
that referenced
this issue
Nov 14, 2024
Failing SQL Feature:
When updating a Boolean column, the value true is parsed as column.
SQL Example:
Column1 and Column2 are parsed as a Column object.
Tester is parsed as a StringValue
true is parsed as Column object. Why? I expect it to be parsed as BooleanValue or something else value object.
Software Information:
The text was updated successfully, but these errors were encountered: