You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 11, 2024. It is now read-only.
I have an issue for the following v2 dune sql. Given correlated subquery is not supported
if I remove "where" statement, then no error.
But it's worked before for the deprecated queries.
select
h.day
,(select evt_tx_hash from all_events where evt_block_time <= h.day limit 1) as hash
from
unnest(SEQUENCE(timestamp '2022-05-20 00:00', CURRENT_DATE, interval '1' day) ) AS h(day)