Skip to content

Commit

Permalink
Merge pull request #277 from FlipsideCrypto/fix_gov
Browse files Browse the repository at this point in the history
fix incremental logic
  • Loading branch information
WHYTEWYLL authored Apr 1, 2024
2 parents 2c4111d + af49671 commit c86104d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/silver/curated/staking/silver__staking_pools_s3.sql
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ WITH txs AS (
{% if var('IS_MIGRATION') %}
WHERE {{ incremental_load_filter('_inserted_timestamp') }}
{% else %}
WHERE {{ incremental_load_filter('_modified_timestamp') }}
WHERE {{ incremental_load_filter('modified_timestamp') }}
{% endif %}
{% endif %}
),
Expand Down Expand Up @@ -64,7 +64,7 @@ function_calls AS (
{% if var('IS_MIGRATION') %}
AND {{ incremental_load_filter('_inserted_timestamp') }}
{% else %}
AND {{ incremental_load_filter('_modified_timestamp') }}
AND {{ incremental_load_filter('modified_timestamp') }}
{% endif %}
{% endif %}
),
Expand Down

0 comments on commit c86104d

Please sign in to comment.