1
0
mirror of https://github.com/zitadel/zitadel.git synced 2025-05-04 11:20:47 +00:00
zitadel/internal/eventstore/handler/v2/state_get.sql

13 lines
227 B
MySQL
Raw Permalink Normal View History

SELECT
aggregate_id
, aggregate_type
, "sequence"
, event_date
, "position"
, filter_offset
FROM
projections.current_states
WHERE
instance_id = $1
AND projection_name = $2
FOR UPDATE NOWAIT;