You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cassandra.apache.org by "Philip Andronov (Created) (JIRA)" <ji...@apache.org> on 2012/01/21 13:42:53 UTC

[jira] [Created] (CASSANDRA-3766) KeysIndex is broken by CASSANDRA-1600

KeysIndex is broken by CASSANDRA-1600 
--------------------------------------

                 Key: CASSANDRA-3766
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-3766
             Project: Cassandra
          Issue Type: Bug
          Components: Core
            Reporter: Philip Andronov
            Priority: Trivial


CASSANDRA-1600 introduces bug which cause KeySearch throws an Exception during search

KeySearcher:163
logger.debug("Skipping {}", baseCfs.getComparator().getString(firstColumn.name()));

Here firstColumn is a column from *index* row, so column name is a *key* in the baseCf. 

So the correct version would be:
logger.debug("Skipping {}", baseCfs.metadata.getKeyValidator().getString(firstColumn.name()));

Right now it is not possible to query KeysIndex. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira