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
Seems that queries of the form select * from atable where col < x
where col is a numeric field (INTEGER / FLOAT / DOUBLE) doesn't work - as it appears to treat col as a STRING. Similarly when a float is used explicity, i.e.
select * from atable where col < 5.0
the query_parser raises an exception.
The text was updated successfully, but these errors were encountered:
Seems that queries of the form select * from atable where col < x
where col is a numeric field (INTEGER / FLOAT / DOUBLE) doesn't work - as it appears to treat col as a STRING. Similarly when a float is used explicity, i.e.
select * from atable where col < 5.0
the query_parser raises an exception.
The text was updated successfully, but these errors were encountered: