The GitHub Actions job "Bindings Python CI" on 
iceberg-rust.git/feat/datafusion-boolean-predicate-pushdown has failed.
Run started by GitHub user viirya (triggered by viirya).

Head commit for run:
a08c2ec604d0a61f6a2acce82767b142ca821c4b / Liang-Chi Hsieh <[email protected]>
feat(datafusion): Add Boolean predicate pushdown support

This commit adds comprehensive support for pushing down Boolean predicates
to the Iceberg table scan layer, improving query performance by filtering
data at the storage level.

Changes:
- Enhanced expr_to_predicate.rs to handle boolean column expressions:
  * Bare boolean columns in filters (e.g., WHERE is_active) are converted
    to column = true predicates
  * NOT of boolean columns (e.g., WHERE NOT is_active) are converted to
    column = false predicates
  * Added Boolean scalar value to Datum conversion
- Added comprehensive sqllogictest (boolean_predicate_pushdown.slt) with:
  * Tests for is_active = true/false with EXPLAIN verification
  * Tests for is_active != true with EXPLAIN verification
  * Tests for combined predicates (AND/OR)
  * Tests for IS NULL/IS NOT NULL on boolean columns
- Created test_boolean_table in engine setup for testing
- Updated test schedule and show_tables baseline

All tests verify that predicates are successfully pushed down to
IcebergTableScan, not just executed in FilterExec.

Co-Authored-By: Claude Sonnet 4.5 <[email protected]>

Report URL: https://github.com/apache/iceberg-rust/actions/runs/21461368320

With regards,
GitHub Actions via GitBox

Reply via email to