Return-Path: Delivered-To: apmail-hadoop-avro-dev-archive@minotaur.apache.org Received: (qmail 59131 invoked from network); 28 Apr 2010 07:37:03 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 28 Apr 2010 07:37:03 -0000 Received: (qmail 32651 invoked by uid 500); 28 Apr 2010 07:37:03 -0000 Delivered-To: apmail-hadoop-avro-dev-archive@hadoop.apache.org Received: (qmail 32385 invoked by uid 500); 28 Apr 2010 07:37:00 -0000 Mailing-List: contact avro-dev-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: avro-dev@hadoop.apache.org Delivered-To: mailing list avro-dev@hadoop.apache.org Received: (qmail 32374 invoked by uid 99); 28 Apr 2010 07:37:00 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Apr 2010 07:37:00 +0000 X-ASF-Spam-Status: No, hits=-1358.9 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Apr 2010 07:36:59 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id o3S7ado3004725 for ; Wed, 28 Apr 2010 07:36:39 GMT Message-ID: <16893851.51921272440199414.JavaMail.jira@thor> Date: Wed, 28 Apr 2010 03:36:39 -0400 (EDT) From: "Jeff Hodges (JIRA)" To: avro-dev@hadoop.apache.org Subject: [jira] Created: (AVRO-531) ruby impl should produce better errors on "flattened" schemas in fields MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 ruby impl should produce better errors on "flattened" schemas in fields ----------------------------------------------------------------------- Key: AVRO-531 URL: https://issues.apache.org/jira/browse/AVRO-531 Project: Avro Issue Type: Improvement Components: ruby Affects Versions: 1.3.2 Reporter: Jeff Hodges Assignee: Jeff Hodges The "flattened" schemas of fields that look like {code} "request": [ { "name": "id", "type": "array", "items": "long" } ], {code} that are supposed to be {code} "request": [ { "name": "id", "type": {"type": "array", "items": "long" }} ], {code} should have way better errors associated with them. Basically, we should check record types for things other than "default", "doc", "name", "type" and raise a specific error if they are seen. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.