2023-10-19 10:19:10 +00:00
|
|
|
INSERT INTO projections.current_states (
|
|
|
|
projection_name
|
|
|
|
, instance_id
|
|
|
|
, aggregate_id
|
|
|
|
, aggregate_type
|
|
|
|
, "sequence"
|
|
|
|
, event_date
|
|
|
|
, "position"
|
|
|
|
, last_updated
|
2023-12-01 12:25:41 +00:00
|
|
|
, filter_offset
|
2023-10-19 10:19:10 +00:00
|
|
|
) VALUES (
|
|
|
|
$1
|
|
|
|
, $2
|
|
|
|
, $3
|
|
|
|
, $4
|
|
|
|
, $5
|
|
|
|
, $6
|
|
|
|
, $7
|
|
|
|
, now()
|
2023-12-01 12:25:41 +00:00
|
|
|
, $8
|
2023-10-19 10:19:10 +00:00
|
|
|
) ON CONFLICT (
|
|
|
|
projection_name
|
|
|
|
, instance_id
|
|
|
|
) DO UPDATE SET
|
|
|
|
aggregate_id = $3
|
|
|
|
, aggregate_type = $4
|
|
|
|
, "sequence" = $5
|
|
|
|
, event_date = $6
|
|
|
|
, "position" = $7
|
|
|
|
, last_updated = statement_timestamp()
|
2023-12-01 12:25:41 +00:00
|
|
|
, filter_offset = $8
|
2023-10-19 10:19:10 +00:00
|
|
|
;
|