Repository: kudu Updated Branches: refs/heads/branch-1.0.x d2ebf5aa7 -> deee2f184
Apache Kudu 1.0.1 Release Notes Change-Id: I16986205e8c29dd42393b4e1b43d44a3fdb4daca Reviewed-on: http://gerrit.cloudera.org:8080/4621 Tested-by: Dan Burkert <[email protected]> Reviewed-by: Todd Lipcon <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/kudu/repo Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/deee2f18 Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/deee2f18 Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/deee2f18 Branch: refs/heads/branch-1.0.x Commit: deee2f184a731151d366c06586116d162fde8504 Parents: d2ebf5a Author: Dan Burkert <[email protected]> Authored: Tue Oct 4 15:16:45 2016 -0700 Committer: Dan Burkert <[email protected]> Committed: Wed Oct 5 00:04:18 2016 +0000 ---------------------------------------------------------------------- docs/release_notes.adoc | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kudu/blob/deee2f18/docs/release_notes.adoc ---------------------------------------------------------------------- diff --git a/docs/release_notes.adoc b/docs/release_notes.adoc index 0261d99..a97b5d6 100644 --- a/docs/release_notes.adoc +++ b/docs/release_notes.adoc @@ -28,6 +28,45 @@ :sectlinks: :experimental: +[[rn_1.0.1]] + +== Overview + +Apache Kudu 1.0.1 is a bug fix release, with no new features or backwards +incompatible changes. + +[[rn_1.0.1_fixed_issues]] +=== Fixed Issues + +- link:https://issues.apache.org/jira/browse/KUDU-1660[KUDU-1660]: Fixed a bug + which would cause the Kudu master and tablet server to fail to start on single + CPU systems. + +- link:https://issues.apache.org/jira/browse/KUDU-1651[KUDU-1652]: Fixed a bug + that would cause the C++ client, tablet server, and Java client to crash or + throw an exception when attempting to scan a table with a predicate which + simplifies to `IS NOT NULL` on a non-nullable column. For instance, setting a + `<= 127` predicate on an `INT8` column could trigger this bug, since the + predicate only filters null values. + +- link:https://issues.apache.org/jira/browse/KUDU-1651[KUDU-1651]: Fixed a bug + that would cause the tablet server to crash when evaluating a scan with + predicates over a dictionary encoded column containing an entire block of null + values. + +- link:https://issues.apache.org/jira/browse/KUDU-1623[KUDU-1623]: Fixed a bug + that would cause the tablet server to crash when handling UPSERT operations + that only set values for the primary key columns. + +- link:http://gerrit.cloudera.org:8080/4488[Gerrit #4488] Fixed a bug in the + Java client's KuduException class which could cause an unexpected + NullPointerException to be thrown when the exception did not have an + associated message. + +- link:https://issues.apache.org/jira/browse/KUDU-1090[KUDU-1090] Fixed a bug in + the memory tracker which could cause a rare crash during tablet server + startup. + [[rn_1.0.0]] == Overview
