mirror of
https://github.com/FlipsideCrypto/ethereum-models.git
synced 2026-02-06 17:26:44 +00:00
21 lines
318 B
SQL
21 lines
318 B
SQL
{% test recent_dupes(
|
|
model,
|
|
unique_key,
|
|
date_field,
|
|
days_back,
|
|
error_threshold
|
|
) %}
|
|
SELECT
|
|
{{ unique_key }},
|
|
COUNT(*) AS records
|
|
FROM
|
|
{{ model }}
|
|
WHERE
|
|
{{ date_field }} > CURRENT_DATE() - {{ days_back }}
|
|
GROUP BY
|
|
1
|
|
HAVING
|
|
records > {{ error_threshold }}
|
|
|
|
{% endtest %}
|