mirror of
https://github.com/FlipsideCrypto/arbitrum-models.git
synced 2026-02-06 11:06:55 +00:00
* initial build pt 1 * decoder changes * dbt project * arbtrace_block history * global node url * comments * removed macro * partition_key * prod uri
21 lines
365 B
SQL
21 lines
365 B
SQL
{# Log configuration details #}
|
|
{{ log_model_details() }}
|
|
|
|
{# Set up dbt configuration #}
|
|
{{ config (
|
|
materialized = 'view',
|
|
tags = ['bronze_decoded_logs']
|
|
) }}
|
|
|
|
SELECT
|
|
*
|
|
FROM
|
|
{{ ref('bronze__decoded_logs_fr_v2') }}
|
|
{% if var('GLOBAL_USES_STREAMLINE_V1', false) %}
|
|
UNION ALL
|
|
SELECT
|
|
*
|
|
FROM
|
|
{{ ref('bronze__decoded_logs_fr_v1') }}
|
|
{% endif %}
|