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 Thompson (JIRA)" <ji...@apache.org> on 2014/08/26 17:30:58 UTC

[jira] [Created] (CASSANDRA-7834) Case sensitivity problem in cqlsh when specifying keyspace in select

Philip Thompson created CASSANDRA-7834:
------------------------------------------

             Summary: Case sensitivity problem in cqlsh when specifying keyspace in select
                 Key: CASSANDRA-7834
                 URL: https://issues.apache.org/jira/browse/CASSANDRA-7834
             Project: Cassandra
          Issue Type: Bug
          Components: Tools
         Environment: OSX and Ubuntu 14.04
            Reporter: Philip Thompson
            Priority: Minor
             Fix For: 2.1.1


The dtest cqlsh_tests.py:TestCqlsh.test_with_empty_values is currently failing. Upon investigation, the issue is a case sensitivity problem in cqlsh. If I have a keyspace, 'cassandra', the following queries all work:
{code}
use cassandra;
use CASSANDRA;
select * from cassandra.table;
{code}
The following query worked in 2.0 but does not work in cqlsh in 2.1:
{code}
select * from CASSANDRA.table
{code}

It should be noted that the final query also works when accessing C* through the python driver, so it should work in cqlsh.



--
This message was sent by Atlassian JIRA
(v6.2#6252)