Details
-
Bug
-
Status: Resolved
-
Normal
-
Resolution: Invalid
-
None
-
cassandra2.0.1 and hector
-
Normal
Description
The following two scripts 's content is the same but use cassandra-cli and cql.
cassandra-cli script is :
create column family gameinfo with comparator = 'UTF8Type'
and key_validation_class = 'CompositeType(UTF8Type, UTF8Type)'
AND default_validation_class = UTF8Type
and column_metadata=[Unknown macro: {column_name}]
with read_repair_chance=0.1
and dclocal_read_repair_chance=0.5;
cql script is :
CREATE TABLE gameinfo (
key1 text,
key2 text,
ltype text
PRIMARY KEY ((key1, key2))
) ;