-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Iceberg predicate pushdown #1561
Iceberg predicate pushdown #1561
Conversation
5a87168
to
9b3a545
Compare
65b06c1
to
4170c47
Compare
presto-iceberg/src/main/java/io/prestosql/plugin/iceberg/IcebergMetadata.java
Outdated
Show resolved
Hide resolved
@@ -116,7 +109,7 @@ public void close() | |||
} | |||
} | |||
|
|||
private ConnectorSplit toIcebergSplit(TupleDomain<HiveColumnHandle> predicate, FileScanTask task) | |||
private ConnectorSplit toIcebergSplit(FileScanTask task) | |||
{ | |||
// TODO: We should leverage residual expression and convert that to TupleDomain. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: update/remove TODOs when necessary.
presto-iceberg/src/main/java/io/prestosql/plugin/iceberg/IcebergTableHandle.java
Outdated
Show resolved
Hide resolved
presto-iceberg/src/main/java/io/prestosql/plugin/iceberg/IcebergSplitManager.java
Outdated
Show resolved
Hide resolved
4170c47
to
e5fb3e3
Compare
@Praveen2112
@Parth-Brahmbhatt I'm curious about why we didn't implement |
The original version of the connector from @Parth-Brahmbhatt was written before |
Merged, thanks! |
Part of #1324