zitadel/cmd/setup/11/11_fetch_events.sql

12 lines
169 B
MySQL
Raw Normal View History

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