From 1703a773fb723ff6c56a3e910aa8635f60506be8 Mon Sep 17 00:00:00 2001 From: Eunbin Son Date: Thu, 16 Jul 2026 20:51:25 +0900 Subject: [PATCH] Docs: Fix Delta Lake migration output name 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 --- docs/docs/delta-lake-migration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/delta-lake-migration.md b/docs/docs/delta-lake-migration.md index 2164014dbd5f..678b4a15bd5d 100644 --- a/docs/docs/delta-lake-migration.md +++ b/docs/docs/delta-lake-migration.md @@ -84,7 +84,7 @@ For detailed usage and other optional configurations, please refer to the [Snaps #### Output | Output Name | Type | Description | | ------------|------|-------------| -| `imported_files_count` | long | Number of files added to the new table | +| `snapshotDataFilesCount` | long | Number of files added to the new table | #### Added Table Properties The following table properties are added to the Iceberg table to be created by default: