mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
e3d1ca4d58
* fix(setup): add filter_offset to `projections.current_states` * fix(eventstore): allow offset in query * fix(handler): offset for already processed events
32 lines
555 B
SQL
32 lines
555 B
SQL
INSERT INTO projections.current_states (
|
|
projection_name
|
|
, instance_id
|
|
, aggregate_id
|
|
, aggregate_type
|
|
, "sequence"
|
|
, event_date
|
|
, "position"
|
|
, last_updated
|
|
, filter_offset
|
|
) VALUES (
|
|
$1
|
|
, $2
|
|
, $3
|
|
, $4
|
|
, $5
|
|
, $6
|
|
, $7
|
|
, now()
|
|
, $8
|
|
) 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()
|
|
, filter_offset = $8
|
|
; |