This is an automated email from the ASF dual-hosted git repository.
aokolnychyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iceberg.git
The following commit(s) were added to refs/heads/master by this push:
new f85366269 Core: Align snapshot summary property names for delete files
(#4766)
f85366269 is described below
commit f85366269a37a960bc05a481c41ea1af5df01d83
Author: Anton Okolnychyi <[email protected]>
AuthorDate: Fri May 13 19:09:40 2022 -0700
Core: Align snapshot summary property names for delete files (#4766)
---
core/src/main/java/org/apache/iceberg/SnapshotSummary.java | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/core/src/main/java/org/apache/iceberg/SnapshotSummary.java
b/core/src/main/java/org/apache/iceberg/SnapshotSummary.java
index 665f5bc17..b2d5e2be9 100644
--- a/core/src/main/java/org/apache/iceberg/SnapshotSummary.java
+++ b/core/src/main/java/org/apache/iceberg/SnapshotSummary.java
@@ -31,10 +31,10 @@ public class SnapshotSummary {
public static final String DELETED_FILES_PROP = "deleted-data-files";
public static final String TOTAL_DATA_FILES_PROP = "total-data-files";
public static final String ADDED_DELETE_FILES_PROP = "added-delete-files";
- public static final String ADD_EQ_DELETE_FILES_PROP =
"added-eq-delete-files";
- public static final String REMOVED_EQ_DELETE_FILES_PROP =
"removed-eq-delete-files";
- public static final String ADD_POS_DELETE_FILES_PROP =
"added-pos-delete-files";
- public static final String REMOVED_POS_DELETE_FILES_PROP =
"removed-pos-delete-files";
+ public static final String ADD_EQ_DELETE_FILES_PROP =
"added-equality-delete-files";
+ public static final String REMOVED_EQ_DELETE_FILES_PROP =
"removed-equality-delete-files";
+ public static final String ADD_POS_DELETE_FILES_PROP =
"added-position-delete-files";
+ public static final String REMOVED_POS_DELETE_FILES_PROP =
"removed-position-delete-files";
public static final String REMOVED_DELETE_FILES_PROP =
"removed-delete-files";
public static final String TOTAL_DELETE_FILES_PROP = "total-delete-files";
public static final String ADDED_RECORDS_PROP = "added-records";