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
The DuckDB binary (/usr/local/bin/duckdb) crashed in duckdb::ExpressionIterator::EnumerateChildren.
The binary compiled with RelWithDebInfo without ASAN reports "''duckdb' terminated by signal SIGSEGV (Address boundary error)".
The binary compiled with RelWithDebInfo and ASAN reports it as stack-overflow.
To Reproduce
CREATETABLEv0 ( v1 INTEGER , v2 INTEGER) ;
SELECT*FROM v0 WHERE v2 <=2AND v2 <= v1 AND v1 < v2 ORDER BY v1 DESC ;