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

   This small change to the query fixes it:
   
   ```sql
   -- Enable pushdown
   SET datafusion.execution.parquet.pushdown_filters = true;
   
   -- 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';
   
   -- 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