[
https://issues.apache.org/jira/browse/CASSANDRA-1809?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12970405#action_12970405
]
Hudson commented on CASSANDRA-1809:
-----------------------------------
Integrated in Cassandra-0.7 #70 (See
[https://hudson.apache.org/hudson/job/Cassandra-0.7/70/])
> 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 rc 2
>
> 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.