Skip to content
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

Add predicate pushdown (updated) #78

Open
wants to merge 12 commits into
base: main
Choose a base branch
from
4 changes: 2 additions & 2 deletions src/common/iceberg.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ vector<IcebergManifestEntry> IcebergTable::ReadManifestEntries(const string &pat
}
} else {
auto schema = avro::compileJsonSchemaFromString(MANIFEST_ENTRY_SCHEMA);
avro::DataFileReader<c::manifest_entry> dfr(std::move(stream), schema);
c::manifest_entry manifest_entry;
avro::DataFileReader<manifest_entry> dfr(std::move(stream), schema);

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

these changes are spurious and hence this file change could be removed from the PR

manifest_entry manifest_entry;
while (dfr.read(manifest_entry)) {
ret.emplace_back(IcebergManifestEntry(manifest_entry));
}
Expand Down
Loading
Loading