Skip to content

Docs: Fix Delta Lake migration output name#17267

Draft
thswlsqls wants to merge 1 commit into
apache:mainfrom
thswlsqls:docs/delta-lake-migration-output-name
Draft

Docs: Fix Delta Lake migration output name#17267
thswlsqls wants to merge 1 commit into
apache:mainfrom
thswlsqls:docs/delta-lake-migration-output-name

Conversation

@thswlsqls

Copy link
Copy Markdown
Contributor

Closes #17266

Summary

  • The Output table on the Delta Lake migration page named the snapshotDeltaLakeTable result imported_files_count, a name that does not exist in the delta-lake module.
  • SnapshotDeltaLakeTable.Result declares one method, long snapshotDataFilesCount() (delta-lake/src/main/java/org/apache/iceberg/delta/SnapshotDeltaLakeTable.java lines 85-91). The docs now use that name.
  • imported_files_count is the output column of the Spark snapshot procedure; the row was character-identical to docs/docs/spark-procedures.md line 618.
  • The page documents the Java API only — Usage lists Java configuration methods, Examples calls DeltaLakeToIcebergMigrationActionsProvider — so no SQL procedure output belongs in this table.
  • The Type (long) and Description columns are unchanged.

Testing done

  • Docs-only change, no behavior change — no test added, no Gradle module affected.
  • Verified the new name against the SnapshotDeltaLakeTable.Result declaration and against BaseSnapshotDeltaLakeTableAction, which builds the result via snapshotDataFilesCount(totalDataFiles).

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
@github-actions github-actions Bot added the docs label Jul 17, 2026
@thswlsqls
thswlsqls marked this pull request as draft July 17, 2026 11:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Docs: Delta Lake migration Output table names a result that does not exist

1 participant