-
Notifications
You must be signed in to change notification settings - Fork 1
Description
Hello!
While testing queries using the vortex extension I am getting a panic when using "WHERE NOT IN ()". While using "WHERE IN ()" is working.
The error message reports the feature is not implemented so this may just be not supported yet. Since the WHERE IN feature is enabled I wanted to confirm this was actually not implemented yet.
Thanks!
Steps:
INSTALL vortex;
CALL dsdgen(sf = 1);
LOAD vortex;
COPY (SELECT * FROM web_sales) TO example.vortex (FORMAT vortex);
SELECT * FROM read_vortex('example.vortex') WHERE ws_sold_date_sk NOT IN (2452230);
The following stack trace is printed and DuckDB crashes
thread '<unnamed>' (725647) panicked at vortex-duckdb/src/convert/expr.rs:135:18: not yet implemented: operator DUCKDB_VX_EXPR_TYPE_COMPARE_NOT_IN note: run with RUST_BACKTRACE=1 environment variable to display a backtrace fatal runtime error: failed to initiate panic, error 5, aborting fish: Job 1, 'duckdb' terminated by signal SIGABRT (Abort)