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
I had searched in the issues and found no similar issues.
Version
master
What's Wrong?
CREATETABLEt (
id intnull,
k largeint null,
d datenull,
k1 int
)
PARTITION BY RANGE (`id`) (
partition p1 values [(1), (2))
)
DISTRIBUTED BY HASH(`k`, `id`) BUCKETS 16
PROPERTIES (
"replication_num"="1"
);
create materialized view mv_t asselect d from t group by d;
altertable t add rollup rollupIndex(d);
quit reconnect and doesn't use dbalter table db.t drop column k1;
// this sql would fail
alter table db.t drop column k1;
What You Expected?
run the sql as following alter table db.t drop column k1;
should success
Search before asking
Version
master
What's Wrong?
// this sql would fail
alter table db.t drop column k1;
What You Expected?
run the sql as following
alter table db.t drop column k1;
should success
How to Reproduce?
No response
Anything Else?
No response
Are you willing to submit PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: