Skip to content

Commit eb0d33d

Browse files
committed
fix: incorrect descriptions of snapshot operations in write-related functions.
1 parent caf02ee commit eb0d33d

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

pyiceberg/table/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ def overwrite(
566566
An overwrite may produce zero or more snapshots based on the operation:
567567
568568
- DELETE: In case existing Parquet files can be dropped completely.
569-
- REPLACE: In case existing Parquet files need to be rewritten.
569+
- OVERWRITE: In case existing Parquet files need to be rewritten to drop rows that match the overwrite filter.
570570
- APPEND: In case new data is being inserted into the table.
571571
572572
Args:
@@ -626,7 +626,7 @@ def delete(
626626
A delete may produce zero or more snapshots based on the operation:
627627
628628
- DELETE: In case existing Parquet files can be dropped completely.
629-
- REPLACE: In case existing Parquet files need to be rewritten
629+
- OVERWRITE: In case existing Parquet files need to be rewritten to drop rows that match the delete filter.
630630
631631
Args:
632632
delete_filter: A boolean expression to delete rows from a table
@@ -1389,7 +1389,7 @@ def overwrite(
13891389
An overwrite may produce zero or more snapshots based on the operation:
13901390
13911391
- DELETE: In case existing Parquet files can be dropped completely.
1392-
- REPLACE: In case existing Parquet files need to be rewritten.
1392+
- OVERWRITE: In case existing Parquet files need to be rewritten to drop rows that match the overwrite filter..
13931393
- APPEND: In case new data is being inserted into the table.
13941394
13951395
Args:

0 commit comments

Comments
 (0)