Skip to content

Commit

Permalink
test and performance (#215)
Browse files Browse the repository at this point in the history
  • Loading branch information
austinFlipside authored Oct 1, 2024
1 parent fe9a4fa commit 0faf69f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 4 additions & 0 deletions models/silver/nft/sales/silver__zeroex_sales.sql
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,7 @@ AND _inserted_timestamp >= (
FROM
{{ this }}
)
and _inserted_timestamp >= dateadd('day', -14, current_date())
{% endif %}
),
token_transfers_raw AS (
Expand Down Expand Up @@ -124,6 +125,7 @@ AND _inserted_timestamp >= (
FROM
{{ this }}
)
and _inserted_timestamp >= dateadd('day', -14, current_date())
{% endif %}
),
logs_token_raw AS (
Expand Down Expand Up @@ -187,6 +189,7 @@ AND _inserted_timestamp >= (
FROM
{{ this }}
)
and _inserted_timestamp >= dateadd('day', -14, current_date())
{% endif %}
),
logs_eth_raw AS (
Expand Down Expand Up @@ -330,6 +333,7 @@ AND _inserted_timestamp >= (
FROM
{{ this }}
)
and _inserted_timestamp >= dateadd('day', -14, current_date())
{% endif %}
)
SELECT
Expand Down
3 changes: 0 additions & 3 deletions models/silver/nft/sales/silver__zeroex_sales.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,6 @@ models:
- name: _INSERTED_TIMESTAMP
tests:
- not_null
- dbt_expectations.expect_row_values_to_have_recent_data:
datepart: day
interval: 90
- dbt_expectations.expect_column_values_to_be_in_type_list:
column_type_list:
- TIMESTAMP_LTZ
Expand Down

0 comments on commit 0faf69f

Please sign in to comment.