You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that we have more than one line per partition and the following query is failling
MERGE INTO "raw"."table" target
USING "raw"."temp_table_ea8727d33972439b8f72b0c11ab5ddc4" source
ON target."_batch_ts" = source."_batch_ts" AND target."_event_ts" = source."_event_ts"
WHEN MATCHED THEN
DELETE
with the following error MERGE_TARGET_ROW_MULTIPLE_MATCHES: One MERGE target table row matched more than one source row
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello, I am using to_iceberg to drop dataframe to our iceberg table. This table is composed of 2 partitions:
I would like to override the previous batch, naturally I've done
The problem is that we have more than one line per partition and the following query is failling
with the following error
MERGE_TARGET_ROW_MULTIPLE_MATCHES: One MERGE target table row matched more than one source row
How can I avoid this?
Beta Was this translation helpful? Give feedback.
All reactions