mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-09 09:24:39 +00:00
13 lines
199 B
SQL
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 |