mirror of
https://github.com/FlipsideCrypto/stellar-models.git
synced 2026-02-06 11:06:44 +00:00
26 lines
459 B
SQL
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') }}
|
|
)
|