You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Mateusz Moneta (JIRA)" <ji...@apache.org> on 2015/02/18 12:27:11 UTC

[jira] [Created] (CASSANDRA-8823) When listed in cqlsh static column has value only for first 100 records.

Mateusz Moneta created CASSANDRA-8823:
-----------------------------------------

             Summary: When listed in cqlsh static column has value only for first 100 records.
                 Key: CASSANDRA-8823
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-8823
             Project: Cassandra
          Issue Type: Bug
            Reporter: Mateusz Moneta
            Priority: Minor


Steps for reproduce:

{noformat}
CREATE TABLE share.test (k text, s text static, i int, primary key (k, i));
INSERT INTO share.test (k, i, s) VALUES ('foo', 0, 'bar);
INSERT INTO share.test (k, i) VALUES ('foo', <1-200]>);
SELECT * FROM share.test;
{noformat}

As result you will get 100 first rows with good values and if you hit enter for {{--MORE--}} next 100 rows will have s column 'null' value.

{noformat}
 foo | 102 | bar
 foo | 101 | bar

---MORE--- 
 k   | i   | s
-----+-----+------
 foo | 100 | null
 foo |  99 | null
{noformat}



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