stellar-models/models/streamline/core/streamline__ledgers.sql
eric-laurello 0d19dfd4f7
AN-5791 observe models (#10)
* observe models

* wf, yml

* spelling, scheduling, comments
2025-04-03 13:22:07 -04:00

26 lines
459 B
SQL

{{ config (
materialized = "view",
tags = ['streamline_view']
) }}
SELECT
_id AS SEQUENCE
FROM
{{ source(
'crosschain_silver',
'number_sequence'
) }}
WHERE
_id >= (
SELECT
MIN(tail_sequence)
FROM
{{ ref('streamline__chain_head_tail') }}
)
AND _id <= (
SELECT
MAX(head_sequence)
FROM
{{ ref('streamline__chain_head_tail') }}
)