mirror of
https://github.com/FlipsideCrypto/bsc-models.git
synced 2026-02-06 13:56:46 +00:00
13 lines
316 B
MySQL
13 lines
316 B
MySQL
|
|
{% 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 %}
|