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)