mirror of
https://github.com/FlipsideCrypto/external-models.git
synced 2026-02-06 15:36:45 +00:00
10 lines
388 B
SQL
10 lines
388 B
SQL
{{ config (
|
|
materialized = 'view'
|
|
) }}
|
|
{{ streamline_external_table_query_v2(
|
|
model = 'oklink',
|
|
partition_function = "CAST(SPLIT_PART(SPLIT_PART(file_name, '/', 3), '_', 1) AS INTEGER)",
|
|
partition_name = "partition_key",
|
|
other_cols = "to_date(value:DATE_DAY::STRING,'YYYYMMDD') AS DATE_DAY, value:BLOCKCHAIN::STRING AS BLOCKCHAIN, value:METRIC::STRING AS METRIC"
|
|
) }}
|