Current section

Files

Jump to
eventstore lib event_store sql statements query_subscription.sql.eex
Raw

lib/event_store/sql/statements/query_subscription.sql.eex

SELECT
subscription_id,
stream_uuid,
subscription_name,
last_seen,
created_at
FROM <%= schema %>.subscriptions
WHERE stream_uuid = $1 AND subscription_name = $2;