[
https://issues.apache.org/jira/browse/CASSANDRA-1809?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Pavel Yaskevich updated CASSANDRA-1809:
---------------------------------------
Attachment: CASSANDRA-1809.patch
Tests are updated too.
> cli executeGetWithConditions is not case-insensitive for CF names
> -----------------------------------------------------------------
>
> Key: CASSANDRA-1809
> URL: https://issues.apache.org/jira/browse/CASSANDRA-1809
> Project: Cassandra
> Issue Type: Bug
> Components: Tools
> Affects Versions: 0.7.0 rc 1
> Reporter: Jonathan Ellis
> Assignee: Pavel Yaskevich
> Priority: Minor
> Fix For: 0.7.0
>
> Attachments: CASSANDRA-1809.patch
>
>
> {code}
> String columnFamily = statement.getChild(0).getText();
> {code}
> is not being normalized for case...
> I tried
> {code}
> - String columnFamily = statement.getChild(0).getText();
> + String columnFamily =
> CliCompiler.getColumnFamily(statement.getChild(0),
> keyspacesMap.get(keySpace).cf_defs);
> {code}
> but that broke it, all gets returned null (missing exception message?)
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.