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
dev=> create table t(id intprimary key, a int, b varchar);
CREATE_TABLE
dev=> create index idx on t(a);
CREATE_INDEX
dev=> alter table t add column c int;
ALTER_TABLE
dev=>select*from t; // panic
dev=> create table t(id intprimary key, a int, b varchar);
CREATE_TABLE
dev=> create index idx on t(b) include(b);
CREATE_INDEX
dev=> alter table t drop column a;
ALTER_TABLE
dev=>select*from t where b ='1'; // fail to select index
QUERY PLAN
--------------------------------------------------
BatchExchange { order: [], dist: Single }
└─BatchFilter { predicate: (t.b='1':Varchar) }
└─BatchScan { table: t, columns: [id, b] }
To Reproduce
No response
Expected behavior
No response
Additional context
No response
The text was updated successfully, but these errors were encountered:
Describe the bug
To Reproduce
No response
Expected behavior
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: