【发布时间】:2020-11-22 20:18:35
【问题描述】:
对于这张桌子
mytable(
id text PRIMARY KEY,
before_creation_hour int,
... creation_hour bigint,
...)
当我尝试更改 before_creation_hour 的类型时,出现错误
cqlsh:codingjedi> alter table mytable
... alter before_creation_hour type bigint;
InvalidRequest: Error from server: code=2200 [Invalid query] message="Altering of types is not allowed"`
我做错了什么?
【问题讨论】:
标签: cassandra-3.0 cqlsh