Return-Path: X-Original-To: apmail-crunch-commits-archive@www.apache.org Delivered-To: apmail-crunch-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 9697B107B2 for ; Thu, 27 Feb 2014 01:41:11 +0000 (UTC) Received: (qmail 30241 invoked by uid 500); 27 Feb 2014 01:41:10 -0000 Delivered-To: apmail-crunch-commits-archive@crunch.apache.org Received: (qmail 30214 invoked by uid 500); 27 Feb 2014 01:41:10 -0000 Mailing-List: contact commits-help@crunch.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@crunch.apache.org Delivered-To: mailing list commits@crunch.apache.org Received: (qmail 30207 invoked by uid 99); 27 Feb 2014 01:41:09 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 27 Feb 2014 01:41:09 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 865E492E158; Thu, 27 Feb 2014 01:41:09 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jwills@apache.org To: commits@crunch.apache.org Message-Id: <2959618e07d04e6cb67425035e894a92@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: CRUNCH-358: Correct the person.avsc schema to be valid. Contributed by Tom White. Date: Thu, 27 Feb 2014 01:41:09 +0000 (UTC) Repository: crunch Updated Branches: refs/heads/master d68895f32 -> cfee30e98 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/cfee30e9 Tree: http://git-wip-us.apache.org/repos/asf/crunch/tree/cfee30e9 Diff: http://git-wip-us.apache.org/repos/asf/crunch/diff/cfee30e9 Branch: refs/heads/master Commit: cfee30e988b826d4c89a78622bf327e13555129f Parents: d68895f Author: Josh Wills Authored: Wed Feb 26 17:40:50 2014 -0800 Committer: Josh Wills Committed: Wed Feb 26 17:40:50 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/cfee30e9/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 } ] }