从包含二级索引的表中删除列时,出现以下错误。我正在使用 ScyllaDB 3.0.4 版。
[无效查询] message="Cannot drop column name on base table warehouse.myuser with materialized views"
以下是示例命令
create table myuser (id int primary key, name text, email text);
create index on myuser(email);
alter table myuser drop name;
我可以在 Apache Cassandra 中成功运行上述语句。