I have a number of existing Cassandra 2.0.0 CFs created by trift API and want to use Datastax DevCenter 1.1.1 and CQL3 in future, so I tried to change column types from blob-s to something more useful. In a particular CF all keys and values are just text (row key is a process name, cell names are some sort of timestamps in text format, values are strings captured at that time). I have successfully altered "key" type and "value" type to "text" but "column1" type makes me a problem.
When running the alter table command from DevCenter: alter table mycfname."MyTableName" alter column1 type text; I am getting popup with: Unable to execute CQL script on 'test': java.lan.AssertationError
Similar question has been asked on some other forum but never answered. Any thoughts? Regards Zoran
desc table mycfname."MyTableName"
as well as the full exception you are receiving after the alter table command? – BrianC