zitadel/cmd/setup/11/11_fetch_events.sql
2023-06-24 09:06:21 +02:00

13 lines
199 B
SQL

SELECT
instance_id
, event_sequence
, creation_date
FROM
eventstore.events
WHERE
created_at IS NULL
ORDER BY
event_sequence DESC
, instance_id
LIMIT $1
FOR UPDATE