Merge branch 'cassandra-3.0' into cassandra-3.3

Conflicts:
	CHANGES.txt
This commit is contained in:
Tyler Hobbs 2016-01-27 14:36:37 -06:00
commit 1a31958bfa
2 changed files with 3 additions and 1 deletions

View File

@ -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)

View File

@ -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