Repository: avro Updated Branches: refs/heads/master 9bff02fbf -> 21b369895
AVRO-1485: Specification says Record field type can be record name but implementation allows any named type. Project: http://git-wip-us.apache.org/repos/asf/avro/repo Commit: http://git-wip-us.apache.org/repos/asf/avro/commit/21b36989 Tree: http://git-wip-us.apache.org/repos/asf/avro/tree/21b36989 Diff: http://git-wip-us.apache.org/repos/asf/avro/diff/21b36989 Branch: refs/heads/master Commit: 21b369895cc6826b862605796bc35704bd142841 Parents: 9bff02f Author: Nandor Kollar <[email protected]> Authored: Thu Jul 20 16:07:58 2017 +0200 Committer: Gabor Szadovszky <[email protected]> Committed: Thu Jul 20 16:09:27 2017 +0200 ---------------------------------------------------------------------- CHANGES.txt | 3 +++ doc/src/content/xdocs/spec.xml | 4 +--- 2 files changed, 4 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/avro/blob/21b36989/CHANGES.txt ---------------------------------------------------------------------- diff --git a/CHANGES.txt b/CHANGES.txt index bdf047c..2d59d39 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -166,6 +166,9 @@ Trunk (not yet released) AVRO-1985: Unreleased resources (gabor) + AVRO-1485: Specification says Record field type can be record name but implementation allows any named type. + (Nandor Kollar via gabor) + Avro 1.8.1 (14 May 2016) INCOMPATIBLE CHANGES http://git-wip-us.apache.org/repos/asf/avro/blob/21b36989/doc/src/content/xdocs/spec.xml ---------------------------------------------------------------------- diff --git a/doc/src/content/xdocs/spec.xml b/doc/src/content/xdocs/spec.xml index 8995e1f..3a680a2 100644 --- a/doc/src/content/xdocs/spec.xml +++ b/doc/src/content/xdocs/spec.xml @@ -102,9 +102,7 @@ of the field (required), and </li> <li><code>doc</code>: a JSON string describing this field for users (optional).</li> - <li><code>type:</code> A JSON object defining a schema, or - a JSON string naming a record definition - (required).</li> + <li><code>type:</code> a <a href="#schemas">schema</a>, as defined above</li> <li><code>default:</code> A default value for this field, used when reading instances that lack this field (optional). Permitted values depend on the
