maxburke opened a new issue #1433:
URL: https://github.com/apache/arrow-datafusion/issues/1433


   With the attached file, running the query:
   
   ```
   CREATE EXTERNAL TABLE t STORED AS PARQUET LOCATION 'test.parquet';
   SELECT "adt" FROM t  WHERE "direction" = 'Two Way';
   ```
   
   returns 0 rows, but:
   
   ```
   SELECT "adt" FROM t  WHERE "direction" LIKE 'Two Way';
   ```
   
   returns the expected 101 rows.
   
   I noticed that if I disable the FilterPushDown optimization pass in 
Datafusion I also get the expected result.
   
   [test.zip](https://github.com/apache/arrow-datafusion/files/7694963/test.zip)
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to