Skip to content

Commit efe50b4

Browse files
committed
fix bad accessor
1 parent 167f9e4 commit efe50b4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pyiceberg/table/update/validate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ def validation_history(
5454
for snapshot in ancestors_between(from_snapshot, to_snapshot, table.metadata):
5555
last_snapshot = snapshot
5656
summary = snapshot.summary
57-
if summary is None or summary.matching_operations not in matching_operations:
57+
if summary is None or summary.operation not in matching_operations:
5858
continue
5959

6060
snapshots.add(snapshot)

0 commit comments

Comments
 (0)