add quotes to date

This commit is contained in:
tarikceric 2025-09-18 11:25:14 -07:00
parent 5de5848aa3
commit 8abd69c18b
2 changed files with 3 additions and 3 deletions

View File

@ -54,7 +54,7 @@ WHERE
AND DATE_TRUNC(
'hour',
block_timestamp
) >= {{ min_block_timestamp_hour }}
) >= '{{ min_block_timestamp_hour }}'
{% endif %}
GROUP BY
1

View File

@ -52,7 +52,7 @@ WITH fees AS (
AND DATE_TRUNC(
'hour',
block_timestamp
) >= {{ min_block_timestamp_hour }}
) >= '{{ min_block_timestamp_hour }}'
{% endif %}
GROUP BY
1
@ -98,7 +98,7 @@ transactions AS (
AND DATE_TRUNC(
'hour',
block_timestamp
) >= {{ min_block_timestamp_hour }}
) >= '{{ min_block_timestamp_hour }}'
{% endif %}
GROUP BY
1