Repository: avro Updated Branches: refs/heads/branch-1.8 fb821095a -> 9d0842da0
AVRO-2021: uuid logical type is not documented (cherry picked from commit 9bff02fbfa5b5d8356aa8af57e250bac7a92ca7f) Project: http://git-wip-us.apache.org/repos/asf/avro/repo Commit: http://git-wip-us.apache.org/repos/asf/avro/commit/9d0842da Tree: http://git-wip-us.apache.org/repos/asf/avro/tree/9d0842da Diff: http://git-wip-us.apache.org/repos/asf/avro/diff/9d0842da Branch: refs/heads/branch-1.8 Commit: 9d0842da05fa4960734322506fcd88e4719c886d Parents: fb82109 Author: Nandor Kollar <[email protected]> Authored: Wed Jun 28 16:36:17 2017 +0200 Committer: Gabor Szadovszky <[email protected]> Committed: Thu Jun 29 13:21:45 2017 +0200 ---------------------------------------------------------------------- CHANGES.txt | 2 ++ doc/src/content/xdocs/spec.xml | 11 +++++++++++ 2 files changed, 13 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/avro/blob/9d0842da/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index 92a3e55..45336ab 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -8,6 +8,8 @@ Trunk (not yet released) IMPROVEMENTS + AVRO-2021: uuid logical type is not documented (Nandor Kollar via gabor) + BUG FIXES AVRO-1401: @Nullable does not work with byte[] (Nandor Kollar via gabor) http://git-wip-us.apache.org/repos/asf/avro/blob/9d0842da/doc/src/content/xdocs/spec.xml ---------------------------------------------------------------------- diff --git a/doc/src/content/xdocs/spec.xml b/doc/src/content/xdocs/spec.xml index 917d314..8995e1f 100644 --- a/doc/src/content/xdocs/spec.xml +++ b/doc/src/content/xdocs/spec.xml @@ -1438,6 +1438,17 @@ void initFPTable() { </section> <section> + <title>UUID</title> + <p> + The <code>uuid</code> logical type represents a random generated universally unique identifier (UUID). + </p> + + <p> + A <code>uuid</code> logical type annotates an Avro <code>string</code>. The string has to conform with <a href="http://www.ietf.org/rfc/rfc4122.txt">RFC-4122</a> + </p> + </section> + + <section> <title>Date</title> <p> The <code>date</code> logical type represents a date within the calendar, with no reference to a particular time zone or time of day.
