Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
2.0.2, 2.1.3, 2.2.3, 2.3.4, 2.4.5, 3.0.0
Description
- Write a parquet file with a column in upper case:
Seq("42").toDF("COL").write.parquet(path)
- Create an external table on top of the written parquet files with a column in lower case
CREATE TABLE t1 (col STRING) USING parquet OPTIONS (path '$path')
- Read the table using LIKE
SELECT * FROM t1 WHERE col LIKE '4%'
It returns empty set but must be one row with 42.
Attachments
Issue Links
- links to