Skip to content

Commit 2ea157e

Browse files
committed
Append rather than truncate
1 parent 179fa27 commit 2ea157e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyiceberg/table/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ def overwrite(
462462

463463
self.delete(delete_filter=overwrite_filter, snapshot_properties=snapshot_properties)
464464

465-
with self.update_snapshot(snapshot_properties=snapshot_properties).overwrite() as update_snapshot:
465+
with self.update_snapshot(snapshot_properties=snapshot_properties).fast_append() as update_snapshot:
466466
# skip writing data files if the dataframe is empty
467467
if df.shape[0] > 0:
468468
data_files = _dataframe_to_data_files(

0 commit comments

Comments
 (0)