Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
4.8.0
-
None
-
None
Description
PhoenixObjectInspector doesn't have information on length of the column. this causes making incorrect constant valuesfor char columns in select statement because of padding spaces with max length(255), and get wrong results because of invalid filter conditions.
ex) column : r_name char(6),
hive query : select * from r_name = 'EUROPE',
phoenix query : select * from r_name = 'EUROPE ' (with 249(255 - 6) tailing white spaces)