Docs: Fix Delta Lake migration output name#17267
Draft
thswlsqls wants to merge 1 commit into
Draft
Conversation
The Output table listed `imported_files_count` as the result of the snapshotDeltaLakeTable action, but that name does not exist in the delta-lake module. It is the output column of the Spark `snapshot` procedure and was copied from spark-procedures.md. SnapshotDeltaLakeTable.Result exposes a single method, snapshotDataFilesCount(), which returns a long. Generated-by: Claude Code
thswlsqls
marked this pull request as draft
July 17, 2026 11:16
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.
Closes #17266
Summary
snapshotDeltaLakeTableresultimported_files_count, a name that does not exist in thedelta-lakemodule.SnapshotDeltaLakeTable.Resultdeclares one method,long snapshotDataFilesCount()(delta-lake/src/main/java/org/apache/iceberg/delta/SnapshotDeltaLakeTable.javalines 85-91). The docs now use that name.imported_files_countis the output column of the Sparksnapshotprocedure; the row was character-identical todocs/docs/spark-procedures.mdline 618.DeltaLakeToIcebergMigrationActionsProvider— so no SQL procedure output belongs in this table.Type(long) andDescriptioncolumns are unchanged.Testing done
SnapshotDeltaLakeTable.Resultdeclaration and againstBaseSnapshotDeltaLakeTableAction, which builds the result viasnapshotDataFilesCount(totalDataFiles).