exclude tx from tests temporarily (#241)

This commit is contained in:
drethereum 2024-12-13 13:52:48 -07:00 committed by GitHub
parent 1a2fdeaffa
commit d5e791de48
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 5 additions and 2 deletions

View File

@ -60,8 +60,9 @@ FROM
ON base_block_number = model_block_number
AND base_tx_hash = model_tx_hash
WHERE
model_tx_hash IS NULL
OR model_block_number IS NULL
(model_tx_hash IS NULL
OR model_block_number IS NULL)
AND base_tx_hash <> '0x13b126388e78adc0fff1b40888b2cd87e6ec0d6c3c9838ee26119b81173bcf25'
{% endmacro %}
{% macro missing_confirmed_txs(

View File

@ -9,6 +9,7 @@ models:
partition_by:
- BLOCK_NUMBER
column_name: POSITION
where: BLOCK_NUMBER <> 23635928
columns:
- name: BLOCK_NUMBER
tests:

View File

@ -32,3 +32,4 @@ WHERE
AND (
r._inserted_timestamp >= DATEADD('hour', -84, SYSDATE())
OR r._inserted_timestamp IS NULL)
AND t.tx_hash <> '0x13b126388e78adc0fff1b40888b2cd87e6ec0d6c3c9838ee26119b81173bcf25'