title | toc | summary |
---|---|---|
What's New in v1.1-alpha.20170810 |
false |
Additions and changes in CockroachDB version v1.1-alpha.20170810 |
Get future release notes emailed to you:
<script>
hbspt.forms.create({
css: '',
cssClass: 'install-form',
portalId: '1753393',
formId: '39686297-81d2-45e7-a73f-55a596a8d5ff',
formInstanceId: 1,
target: '.install-form-1'
});
</script>
- The
RETURNING
clause can now be used withUPSERT
andINSERT .. ON CONFLICT DO UPDATE
statements. #17149
- The
cockroach sql
shell now prints the running time of each statement (only in interactive shells using thepretty
output format). #17358
- Fix a panic when parsing an interval consisting only of
+
or-
characters. #17344 - Improved responsiveness of query cancellation. #17219
- Prepared statements with more than 65535 arguments now return an error instead of crashing the server. #17380
- Improved tracing for batches that get split across multiple ranges. #17414
- Rebalancing now considers data size and write load, not just number of replicas. #16878
- The default MVCC garbage collection TTL has been changed from 24 to 25 hours, allowing statements (especially
dump
orBACKUP
) started at the 24h mark to be completed. #17366 - Reduced number of goroutines used in the command queue. #9448
- Improved the UX of the documentation version selector on mobile devices. #1670
- Expanded the instructions for upgrading a cluster's version. #1769
- Added an example for using a
WHERE
clause to apply anINSERT .. ON CONFLICT .. DO UPDATE SET
expression conditionally. #1803