adriangb commented on issue #16588:
URL: https://github.com/apache/datafusion/issues/16588#issuecomment-3024916748

   I can reproduce running this SQL in `datafusion-cli`:
   
   ```sql
   -- Create external table pointing to the provided parquet file
   CREATE EXTERNAL TABLE categories 
   STORED AS PARQUET
   LOCATION 
's3://fsq-os-places-us-east-1/release/dt=2025-06-10/categories/parquet/categories.zstd.parquet';
   
   -- First, inspect the data structure
   SELECT * FROM categories LIMIT 5;
   
   -- Test with pushdown DISABLED
   SET datafusion.execution.parquet.pushdown_filters = false;
   
   -- Query with pushdown DISABLED - establish baseline
   SELECT COUNT(*)
   FROM categories
   WHERE level1_category_name = 'Arts and Entertainment';
   
   -- Enable pushdown
   SET datafusion.execution.parquet.pushdown_filters = true;
   
   -- Same query with pushdown ENABLED - should match baseline
   SELECT COUNT(*)
   FROM categories
   WHERE level1_category_name = 'Arts and Entertainment';
   
   -- Cleanup
   DROP TABLE categories;
   ```


-- 
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: github-unsubscr...@datafusion.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org
For additional commands, e-mail: github-h...@datafusion.apache.org

Reply via email to