mirror of https://github.com/apache/cassandra
Merge branch 'cassandra-3.0' into cassandra-3.3
Conflicts: CHANGES.txt
This commit is contained in:
commit
1a31958bfa
|
|
@ -1,6 +1,8 @@
|
|||
3.3
|
||||
* Avoid bootstrap hanging when existing nodes have no data to stream (CASSANDRA-11010)
|
||||
Merged from 3.0:
|
||||
* (cqlsh) handle INSERT and UPDATE statements with LWT conditions correctly
|
||||
(CASSANDRA-11003)
|
||||
* Fix DISTINCT queries in mixed version clusters (CASSANDRA-10762)
|
||||
* Migrate build status for indexes along with legacy schema (CASSANDRA-11046)
|
||||
* Ensure SSTables for legacy KEYS indexes can be read (CASSANDRA-11045)
|
||||
|
|
|
|||
|
|
@ -1269,7 +1269,7 @@ class Shell(cmd.Cmd):
|
|||
elif result:
|
||||
# CAS INSERT/UPDATE
|
||||
self.writeresult("")
|
||||
self.print_static_result(result.column_names, list(result), self.parse_for_table_meta(statement.query_string))
|
||||
self.print_static_result(result.column_names, list(result), self.parse_for_update_meta(statement.query_string))
|
||||
self.flush_output()
|
||||
return True, future
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue