mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
12 lines
207 B
MySQL
12 lines
207 B
MySQL
|
SELECT
|
||
|
aggregate_id
|
||
|
, aggregate_type
|
||
|
, "sequence"
|
||
|
, event_date
|
||
|
, "position"
|
||
|
FROM
|
||
|
projections.current_states
|
||
|
WHERE
|
||
|
instance_id = $1
|
||
|
AND projection_name = $2
|
||
|
FOR UPDATE NOWAIT;
|