Add table_file_row_counts API#79
Open
robertbuessow wants to merge 1 commit intomainfrom
Open
Conversation
…fest metadata
Adds iceberg_table_file_row_counts FFI function that calls plan_files() on the
current snapshot to collect (file_path, record_count) pairs from Iceberg manifest
metadata without reading any Parquet files. Includes a corresponding free function
and Julia bindings returning a Dict{String, Int64}.
Uses boxed slices (not Box<Vec>) so response pointers point directly to array data,
allowing Julia to index them without indirecting through the Vec struct layout.
Labels: dismiss-release-notes, build:benchmark
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
iceberg_table_file_row_countsFFI function that reads per-file row counts from Iceberg manifest metadata without reading any Parquet data filestable_file_row_counts(table) -> Dict{String, Int64}mapping file paths to their row countsBox<Vec>) for the response arrays so Julia can index the data directly without indirecting through the Vec struct layoutTest plan
make run-containersto start MinIO + Polarismake test-dev— the newtable_file_row_countstestset inscan_tests.jlshould pass🤖 Generated with Claude Code