We do not want to correct the definition of the columns when creating the column family, since we may have to insert new columns in the column family. Can this be achieved? I am wondering if it is possible to define column metadata when creating a column family, but specify a column when updating client data, for example:
CREATE COLUMN FAMILY products with default_validation_class = UTF8Type AND key_validation_class = UTF8Type AND comparator = UTF8Type; set products ['1001'] ['brand'] = 'Sony;
Thanks Fan
source share