mirror of
https://github.com/FlipsideCrypto/fsc-evm.git
synced 2026-02-06 15:51:48 +00:00
limits
This commit is contained in:
parent
bae17ad179
commit
cc71d03444
@ -38,7 +38,8 @@ to_do_snapshot AS (
|
||||
FROM
|
||||
{{ ref("streamline__balances_erc20_daily_complete") }}
|
||||
WHERE block_date = ('{{ vars.BALANCES_SL_START_DATE }}' :: TIMESTAMP) :: DATE
|
||||
LIMIT {{ vars.BALANCES_SL_ERC20_DAILY_HISTORY_SQL_LIMIT }}
|
||||
{# LIMIT {{ vars.BALANCES_SL_ERC20_DAILY_HISTORY_SQL_LIMIT }} #}
|
||||
LIMIT 40000 --remove/increase after testing
|
||||
),
|
||||
to_do_daily AS (
|
||||
SELECT
|
||||
@ -59,7 +60,8 @@ to_do_daily AS (
|
||||
{{ ref("streamline__balances_erc20_daily_complete") }}
|
||||
WHERE block_date > ('{{ vars.BALANCES_SL_START_DATE }}' :: TIMESTAMP) :: DATE
|
||||
ORDER BY block_date DESC
|
||||
LIMIT {{ vars.BALANCES_SL_ERC20_DAILY_HISTORY_SQL_LIMIT }}
|
||||
{# LIMIT {{ vars.BALANCES_SL_ERC20_DAILY_HISTORY_SQL_LIMIT }} #}
|
||||
LIMIT 40000 --remove/increase after testing
|
||||
),
|
||||
to_do AS (
|
||||
SELECT
|
||||
|
||||
Loading…
Reference in New Issue
Block a user