Skip to content

Commit

Permalink
feat: Convert predicate to arrow filter and push down to parquet read…
Browse files Browse the repository at this point in the history
…er (#295)

* feat: Convert predicate to arrow filter and push down to parquet reader

* For review

* Fix clippy

* Change from vector of BoundPredicate to BoundPredicate

* Add test for CollectFieldIdVisitor

* Return projection_mask for leaf column

* Update

* For review

* For review

* For review

* For review

* More

* fix

* Fix clippy

* More

* Fix clippy

* fix clippy
  • Loading branch information
viirya authored May 15, 2024
1 parent 3b8121e commit 81df940
Show file tree
Hide file tree
Showing 6 changed files with 903 additions and 10 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ apache-avro = "0.16"
array-init = "2"
arrow-arith = { version = "51" }
arrow-array = { version = "51" }
arrow-ord = { version = "51" }
arrow-schema = { version = "51" }
arrow-select = { version = "51" }
async-stream = "0.3.5"
Expand Down
1 change: 1 addition & 0 deletions crates/iceberg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ apache-avro = { workspace = true }
array-init = { workspace = true }
arrow-arith = { workspace = true }
arrow-array = { workspace = true }
arrow-ord = { workspace = true }
arrow-schema = { workspace = true }
arrow-select = { workspace = true }
async-stream = { workspace = true }
Expand Down
Loading

0 comments on commit 81df940

Please sign in to comment.