Repository: crunch Updated Branches: refs/heads/apache-crunch-0.8 85d6e4ee6 -> 288db3e8b
CRUNCH-358: Correct the person.avsc schema to be valid. Contributed by Tom White. Project: http://git-wip-us.apache.org/repos/asf/crunch/repo Commit: http://git-wip-us.apache.org/repos/asf/crunch/commit/288db3e8 Tree: http://git-wip-us.apache.org/repos/asf/crunch/tree/288db3e8 Diff: http://git-wip-us.apache.org/repos/asf/crunch/diff/288db3e8 Branch: refs/heads/apache-crunch-0.8 Commit: 288db3e8bca939adf31ebd6938ce36ec462680d0 Parents: 85d6e4e Author: Josh Wills <[email protected]> Authored: Wed Feb 26 17:40:50 2014 -0800 Committer: Josh Wills <[email protected]> Committed: Wed Feb 26 17:41:33 2014 -0800 ---------------------------------------------------------------------- crunch-core/src/test/avro/person.avsc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/crunch/blob/288db3e8/crunch-core/src/test/avro/person.avsc ---------------------------------------------------------------------- diff --git a/crunch-core/src/test/avro/person.avsc b/crunch-core/src/test/avro/person.avsc index e0fff30..eb24071 100644 --- a/crunch-core/src/test/avro/person.avsc +++ b/crunch-core/src/test/avro/person.avsc @@ -22,5 +22,5 @@ "fields": [ {"name": "name", "type": ["string", "null"] }, {"name": "age", "type": "int"}, - {"name": "siblingnames", "type" : [{ "type": "array", "items": "string" }, "null"], "default": null } ] + {"name": "siblingnames", "type" : ["null", { "type": "array", "items": "string" }], "default": null } ] }
