mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-2.1.0' into cassandra-2.1
This commit is contained in:
commit
c7f9c8d21a
|
|
@ -47,6 +47,7 @@ Merged from 1.2:
|
|||
|
||||
|
||||
2.1.0
|
||||
* (cqlsh) Fix case insensitivity (CASSANDRA-7834)
|
||||
* Fix failure to stream ranges when moving (CASSANDRA-7836)
|
||||
* Correctly remove tmplink files (CASSANDRA-7803)
|
||||
* (cqlsh) Fix column name formatting for functions, CAS operations,
|
||||
|
|
|
|||
|
|
@ -111,8 +111,9 @@ class Cql3ParsingRuleSet(CqlParsingRuleSet):
|
|||
if name == '':
|
||||
return name
|
||||
if name[0] == '"' and name[-1] == '"':
|
||||
name = name[1:-1].replace('""', '"')
|
||||
return name
|
||||
return name[1:-1].replace('""', '"')
|
||||
else:
|
||||
return name.lower()
|
||||
|
||||
@staticmethod
|
||||
def dequote_value(cqlword):
|
||||
|
|
|
|||
Loading…
Reference in New Issue