Return-Path: X-Original-To: apmail-parquet-commits-archive@minotaur.apache.org Delivered-To: apmail-parquet-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DA78F18675 for ; Fri, 15 May 2015 19:40:35 +0000 (UTC) Received: (qmail 31296 invoked by uid 500); 15 May 2015 19:40:35 -0000 Delivered-To: apmail-parquet-commits-archive@parquet.apache.org Received: (qmail 31273 invoked by uid 500); 15 May 2015 19:40:35 -0000 Mailing-List: contact commits-help@parquet.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@parquet.apache.org Delivered-To: mailing list commits@parquet.apache.org Received: (qmail 31260 invoked by uid 99); 15 May 2015 19:40:35 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 May 2015 19:40:35 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 9E455E2F6F; Fri, 15 May 2015 19:40:35 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: blue@apache.org To: commits@parquet.apache.org Message-Id: <6a4a1876c465440ea0f7c0422da7d969@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: parquet-mr git commit: PARQUET-254: Fixes exception message Date: Fri, 15 May 2015 19:40:35 +0000 (UTC) Repository: parquet-mr Updated Branches: refs/heads/master e5d9c6c79 -> 7680fae14 PARQUET-254: Fixes exception message [Review on Reviewable](https://reviewable.io/reviews/apache/incubator-parquet-mr/174) Author: Cheng Lian Closes #174 from liancheng/fix-exception-message and squashes the following commits: db816c2 [Cheng Lian] Fixes exception message Project: http://git-wip-us.apache.org/repos/asf/parquet-mr/repo Commit: http://git-wip-us.apache.org/repos/asf/parquet-mr/commit/7680fae1 Tree: http://git-wip-us.apache.org/repos/asf/parquet-mr/tree/7680fae1 Diff: http://git-wip-us.apache.org/repos/asf/parquet-mr/diff/7680fae1 Branch: refs/heads/master Commit: 7680fae14c9f544d0585a7b150004a1e48fff53a Parents: e5d9c6c Author: Cheng Lian Authored: Fri May 15 12:40:27 2015 -0700 Committer: Ryan Blue Committed: Fri May 15 12:40:27 2015 -0700 ---------------------------------------------------------------------- .../src/main/java/org/apache/parquet/avro/AvroSchemaConverter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/7680fae1/parquet-avro/src/main/java/org/apache/parquet/avro/AvroSchemaConverter.java ---------------------------------------------------------------------- diff --git a/parquet-avro/src/main/java/org/apache/parquet/avro/AvroSchemaConverter.java b/parquet-avro/src/main/java/org/apache/parquet/avro/AvroSchemaConverter.java index 19aa2b3..29f8b17 100644 --- a/parquet-avro/src/main/java/org/apache/parquet/avro/AvroSchemaConverter.java +++ b/parquet-avro/src/main/java/org/apache/parquet/avro/AvroSchemaConverter.java @@ -237,7 +237,7 @@ public class AvroSchemaConverter { } @Override public Schema convertINT96(PrimitiveTypeName primitiveTypeName) { - throw new IllegalArgumentException("INT64 not yet implemented."); + throw new IllegalArgumentException("INT96 not yet implemented."); } @Override public Schema convertFLOAT(PrimitiveTypeName primitiveTypeName) {