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
the v2 engine will return true while Calcite return false.
It is a bug in v2 engine. test in spark-sql
spark-sql (default)> select "Amber JOHnny" LIKE "Ambe_";
Amber JOHnny LIKE Ambe_
false
spark-sql (default)> select "Amber JOHnny" LIKE "Ambe_%";
Amber JOHnny LIKE Ambe_%
true
What is the bug?
CalciteWhereCommandIT::testIsNotNullFunction
running failed.When expression
like(firstname, 'Ambe_')
evaluates on valueAmber JOHnny
, the v2 engine will return true while Calcite return false.The text was updated successfully, but these errors were encountered: