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