mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-14 20:08:02 +00:00
12 lines
200 B
MySQL
12 lines
200 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;
|