mirror of
https://github.com/FlipsideCrypto/bsc-models.git
synced 2026-02-06 15:31:51 +00:00
13 lines
316 B
SQL
13 lines
316 B
SQL
{% macro lookback() %}
|
|
{% if execute and is_incremental() %}
|
|
{% set query %}
|
|
SELECT
|
|
MAX(_inserted_timestamp) :: DATE - 3
|
|
FROM
|
|
{{ this }};
|
|
{% endset %}
|
|
{% set last_week = run_query(query).columns [0] [0] %}
|
|
{% do return(last_week) %}
|
|
{% endif %}
|
|
{% endmacro %}
|