You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Alexander Nabatchikov (JIRA)" <ji...@apache.org> on 2017/01/09 12:03:58 UTC

[jira] [Created] (CASSANDRA-13111) Unsupported unset value for column

Alexander Nabatchikov created CASSANDRA-13111:
-------------------------------------------------

             Summary: Unsupported unset value for column
                 Key: CASSANDRA-13111
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-13111
             Project: Cassandra
          Issue Type: Bug
          Components: CQL
         Environment: Ubuntu 16.04
            Reporter: Alexander Nabatchikov
            Priority: Minor


I have table like this:
create table test_table
(
	pkey1 int,
	pkey2 int,
	pkey3 int,
	ccol1 int,
	ccol2 int,
	col int
) PRIMARY KEY ((pkey1,pkey2,pkey3), ccol1, ccol2);

And this CQL won't work:
SELECT * FROM test_table WHERE pkey1 = ? AND pkey2 = ? AND pkey3 = ? AND ccol1 = ? AND col = ? ALLOW FILTERING;

It throws message: Unsupported unset value for column col.

But if execute just: "SELECT * FROM test_table WHERE col = ? ALLOW FILTERING;" all is OK.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)