Details
-
Bug
-
Status: Resolved
-
Low
-
Resolution: Fixed
-
None
-
None
-
Low
Description
Inserting into the schema created by cassandra-stress. cqlsh DESCRIBE TABLE says
CREATE TABLE "Standard1" ( "KEY" blob PRIMARY KEY, "C0" blob, "C1" blob, "C2" blob, "C3" blob, "C4" blob ) WITH COMPACT STORAGE AND comment='' AND caching='KEYS_ONLY' AND read_repair_chance=0.100000 AND dclocal_read_repair_chance=0.000000 AND gc_grace_seconds=864000 AND replicate_on_write='true';
but that casing doesn't actually work:
cqlsh:Keyspace1> insert into "Standard1" ("KEY", "C0", "C1", "C2", "C3", "C4") values ('FF', '00', '11', '22', '33', '44'); Bad Request: Unknown identifier KEY
lowercase does work:
cqlsh:Keyspace1> insert into "Standard1" ("key", "C0", "C1", "C2", "C3", "C4") values ('FF', '00', '11', '22', '33', '44');