Re: Re: Empty partition keys allowed in MV, but not in normal table

2018-03-26 Thread Duarte Nunes
Created https://issues.apache.org/jira/browse/CASSANDRA-14345 On 25/03/2018 22:05, kurt greaves wrote: Yeah definitely a problem there. Can you create a JIRA for it? On Sat., 24 Mar. 2018, 11:00 Duarte Nunes, <dua...@scylladb.com> wrote: Hi, Given the following table: cqlsh&g

Empty partition keys allowed in MV, but not in normal table

2018-03-23 Thread Duarte Nunes
Hi, Given the following table: cqlsh> create keyspace ks WITH replication = {'class': 'SimpleStrategy', 'replication_factor': 1}; cqlsh> create table t (p text, c int, v text, primary key (p)); cqlsh> use ks; The following fails: cqlsh:ks> insert into t (p, c, v) values ('', 2, '');