Для этой таблицы
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"`
Что я делаю не так?