mirror of
https://github.com/FlipsideCrypto/osmosis-models.git
synced 2026-02-06 17:26:51 +00:00
50 lines
928 B
SQL
50 lines
928 B
SQL
{{ config(
|
|
materialized = 'incremental',
|
|
unique_key = "_unique_key",
|
|
incremental_strategy = 'merge',
|
|
cluster_by = ['block_timestamp::DATE','_inserted_timestamp::DATE'],
|
|
post_hook = "ALTER TABLE {{ this }} ADD SEARCH OPTIMIZATION"
|
|
) }}
|
|
|
|
SELECT
|
|
block_id,
|
|
block_timestamp,
|
|
tx_id,
|
|
tx_succeeded,
|
|
msg_group,
|
|
msg_sub_group,
|
|
msg_index,
|
|
msg_type,
|
|
b.index AS attribute_index,
|
|
TRY_BASE64_DECODE_STRING(
|
|
b.value :key :: STRING
|
|
) AS attribute_key,
|
|
TRY_BASE64_DECODE_STRING(
|
|
b.value :value :: STRING
|
|
) AS attribute_value,
|
|
_inserted_timestamp,
|
|
concat_ws(
|
|
'-',
|
|
tx_id,
|
|
msg_index,
|
|
attribute_index
|
|
) AS _unique_key
|
|
FROM
|
|
{{ ref('silver__msgs') }} A,
|
|
LATERAL FLATTEN(
|
|
input => A.msg,
|
|
path => 'attributes'
|
|
) b
|
|
|
|
{% if is_incremental() %}
|
|
WHERE
|
|
_inserted_timestamp >= (
|
|
SELECT
|
|
MAX(
|
|
_inserted_timestamp
|
|
)
|
|
FROM
|
|
{{ this }}
|
|
)
|
|
{% endif %}
|