You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Patrick Callaghan (JIRA)" <ji...@apache.org> on 2014/05/27 12:35:01 UTC

[jira] [Created] (CASSANDRA-7305) CQL3, Static columns not returning rows if values are not set

Patrick Callaghan created CASSANDRA-7305:
--------------------------------------------

             Summary: CQL3, Static columns not returning rows if values are not set
                 Key: CASSANDRA-7305
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-7305
             Project: Cassandra
          Issue Type: Bug
          Components: Core
            Reporter: Patrick Callaghan


Just a quick note on static columns, if you create some cql rows using clustered columns and don't provide a value for a static column, then selecting the row key with the (null) static column won't return any rows.

create table statictest( a int, b text static, c text, PRIMARY KEY (a, c));
insert into statictest (a, c) values (1, 'test');
select a,b from statictest;

(0 rows)





--
This message was sent by Atlassian JIRA
(v6.2#6252)