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


{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.

Reply via email to