hotfix tests ignore block 0

This commit is contained in:
desmond-hui 2024-09-30 09:12:19 -07:00
parent 106e3f97b3
commit acb27e6368
2 changed files with 6 additions and 2 deletions

View File

@ -4,7 +4,9 @@ models:
description: Contains general information about each block produced on Eclipse.
recent_date_filter: &recent_date_filter
config:
where: modified_timestamp >= current_date - 7
where: >
modified_timestamp >= current_date - 7
AND block_id > 0
columns:
- name: BLOCK_ID
description: "{{ doc('block_id') }}"

View File

@ -3,7 +3,9 @@ models:
- name: silver__blocks
recent_date_filter: &recent_date_filter
config:
where: _inserted_timestamp >= current_date - 7
where: >
_inserted_timestamp >= current_date - 7
AND block_id > 0
columns:
- name: BLOCK_ID
description: "{{ doc('block_id') }}"