I am trying to update the entire row when matched. I want this command to be an upsert.
WHEN MATCHED THEN UPDATE SET target.* = updates.*
is not the right syntax.
How can I update the entire row?
MERGE INTO glue_catalog.{DATABASE_NAME}.{TABLE_NAME} target
USING (SELECT * FROM upsert_items) updates
ON {join_condidtion}
WHEN MATCHED THEN UPDATE SET target.* = updates.*
WHEN NOT MATCHED THEN INSERT *
Running Spark version 3.3.0-amzn-1
Iceberg v1.0.0
Based on the example given with the
WHEN NOT MATCHED THEN INSERT *
, it should be the same forUPDATE
.