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

Explicitly requested keys will always be present in resultset

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Resolved
    • Low
    • Resolution: Duplicate
    • None
    • None
    • None
    • Low

    Description

      This bug is regarding the select after the 'truncate'. In 1.0.1 no rows would ever be returned, but now we are seeing a tombstone when querying for user1. Jake mentioned this may be related to CASSANDRA-2855.

      cqlsh> CREATE KEYSPACE ks1 with 
         ...   strategy_class =  
         ...     'org.apache.cassandra.locator.SimpleStrategy' 
         ...   and strategy_options:replication_factor=1;
        
      cqlsh> use ks1;
      
      cqlsh:ks1> 
      
      cqlsh:ks1> CREATE COLUMNFAMILY users (
             ...   KEY varchar PRIMARY KEY, password varchar, gender varchar,
             ...   session_token varchar, state varchar, birth_year bigint);
      
      cqlsh:ks1> INSERT INTO users (KEY, password) VALUES ('user1', 'ch@ngem3a');
      
      cqlsh:ks1> UPDATE users SET gender = 'm', birth_year = '1980' WHERE KEY = 'user1';
      
      cqlsh:ks1> SELECT * FROM users WHERE key='user1';
         KEY | birth_year | gender |  password |
       user1 |       1980 |      m | ch@ngem3a |
      
      cqlsh:ks1> TRUNCATE users;
      
      // Expected, no rows returned
      cqlsh:ks1> SELECT * FROM users WHERE key='user1';
         KEY |
       user1 |
      
      // Expected, no rows returned
      cqlsh:ks1> SELECT * FROM users;
      
      

      Attachments

        Issue Links

          Activity

            People

              jbellis Jonathan Ellis
              cdaw Cathy Daw
              Jonathan Ellis
              Jonathan Ellis
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: