probably a good idea to put the original issue on jire, anyway.
https://issues.apache.org/jira/browse/CASSANDRA
On 01/05/2013 11:16 AM, Pierre Chalamet wrote:
Hello,
Removing the extra parenthesis around the primary key definition seems to
work as expected:
CREATE TABLE foo2 (a int, b text,
Hello,
Removing the extra parenthesis around the primary key definition seems to
work as expected:
CREATE TABLE foo2 (a int, b text, c uuid, PRIMARY KEY (a, b) );
INSERT INTO foo2 (a, b , c ) VALUES ( 1 , 'aze',
'4d481800-4c5f-11e1-82e0-3f484de45426');
INSERT INTO foo2 (a, b , c ) VALUES ( 1 ,