DROP TABLE on partitioned table causes "Invalid Input Error" on all subsequent queries · Issue #69 · duckdb/ducklake · GitHub
More Web Proxy on the site http://driver.im/
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
CREATETABLEIF NOT EXISTS test_update AS (SELECT1as id, 'hello'as greeting, 60as amount) WITH NO DATA;
INSERT INTO test_update SELECT1as id, 'hello'as greeting, 60as amount;
ALTERTABLE test_update SET PARTITIONED BY (greeting);
DROPTABLE test_update;
-- Can be literally any query
SHOW ALL TABLES;
Resulting error:
Invalid Input Error: Could not find matching table for partition entry
The text was updated successfully, but these errors were encountered:
Setup:
Reproduce:
Resulting error:
Invalid Input Error: Could not find matching table for partition entry
The text was updated successfully, but these errors were encountered: