Inserting data in table with umlaut is not possible
问题 I am using Cassandra 1.2.5 (cqlsh 3.0.2) and trying to inserting data in a small test-database with german characters which is not possible. I get back the message from cqlsh: "Bad Request: Input length = 1" below is the setup of the keyspace, the table and the insert. CREATE KEYSPACE test WITH REPLICATION = { 'class' : 'SimpleStrategy', 'replication_factor' : 1 }; use test; CREATE TABLE testdata ( id varchar, text varchar, PRIMARY KEY (id) This is working: insert into testdata (id, text)