mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-3.11' into trunk
This commit is contained in:
commit
59a4624d5f
|
|
@ -185,6 +185,7 @@
|
|||
|
||||
|
||||
3.11.2
|
||||
* Add DEFAULT, UNSET, MBEAN and MBEANS to `ReservedKeywords` (CASSANDRA-14205)
|
||||
* Print correct snitch info from nodetool describecluster (CASSANDRA-13528)
|
||||
* Enable CDC unittest (CASSANDRA-14141)
|
||||
* Acquire read lock before accessing CompactionStrategyManager fields (CASSANDRA-14139)
|
||||
|
|
|
|||
|
|
@ -85,7 +85,11 @@ class ReservedKeywords
|
|||
"NAN",
|
||||
"INFINITY",
|
||||
"OR",
|
||||
"REPLACE" };
|
||||
"REPLACE",
|
||||
"DEFAULT",
|
||||
"UNSET",
|
||||
"MBEAN",
|
||||
"MBEANS"};
|
||||
|
||||
private static final Set<String> reservedSet = ImmutableSet.copyOf(reservedKeywords);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue