Merge multiple sinks with the same primary key
ON CONFLICT only controls how INSERT and UPDATE events are handled. By default, CREATE SINK ... INTO forwards DELETE events as well. If any upstream deletes a row with a given primary key, the corresponding row in the wide table will be deleted.To prevent DELETE events from removing rows in the wide table, force the sink to be append-only:type = 'append-only' and force_append_only = 'true' for this pattern.