Uploaded image for project: 'Cassandra'
  1. Cassandra
  2. CASSANDRA-7049

Rows with dynamic columns inserted via cassandra-cli are not shown via cqlsh

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Normal
    • Resolution: Won't Fix
    • None
    • None
    • Normal

    Description

      # use cli/thrift interface to create column family and insert 2 rows
      bin/cassandra-cli
      
      create keyspace test;
      use test;
      # create column family first
      create column family t1 with comparator = UTF8Type and key_validation_class = UTF8Type and default_validation_class=UTF8Type and column_metadata = [{column_name: column1, validation_class: UTF8Type}];  
      # insert few rows into t1 with dynamic columns
      set t1['1']['column2'] = 'value2';
      set t1['2']['column3'] = 'value3';
      # list rows
      list t1;
      -------------------
      RowKey: 2
      => (name=column3, value=value3, timestamp=1397717445436000)
      -------------------
      RowKey: 1
      => (name=column2, value=value2, timestamp=1397717447253000)
      2 Rows Returned.
      
      # check that 2 rows are visible from cqlsh
      bin/cqlsh
      
      use test;
      select * from t1;
      (0 rows)
      

      Expected result:
      Rows are show from CQL
      Actual result:
      No rows are displayed

      Attachments

        Activity

          People

            Unassigned Unassigned
            tazija Sergey Bushik
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: