We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d416a68 commit 6720ee5Copy full SHA for 6720ee5
1 file changed
python/datafusion/dataframe.py
@@ -1257,8 +1257,16 @@ class InsertOp(Enum):
1257
"""
1258
1259
APPEND = InsertOpInternal.APPEND
1260
+ """Appends new rows to the existing table without modifying any existing rows."""
1261
+
1262
REPLACE = InsertOpInternal.REPLACE
1263
+ """Replace existing rows that collide with the inserted rows.
1264
1265
+ Replacement is typically based on a unique key or primary key.
1266
+ """
1267
1268
OVERWRITE = InsertOpInternal.OVERWRITE
1269
+ """Overwrites all existing rows in the table with the new rows."""
1270
1271
1272
class DataFrameWriteOptions:
0 commit comments