You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@parquet.apache.org by zi...@apache.org on 2018/01/25 15:17:31 UTC

parquet-mr git commit: PARQUET-1065: Deprecate type-defined sort ordering for INT96 type.

Repository: parquet-mr
Updated Branches:
  refs/heads/master 89aeec028 -> 6e0cc729d


PARQUET-1065: Deprecate type-defined sort ordering for INT96 type.

Author: Zoltan Ivanfi <zi...@cloudera.com>

Closes #454 from zivanfi/PARQUET-1065 and squashes the following commits:

8559f89 [Zoltan Ivanfi] PARQUET-1065: Deprecate type-defined sort ordering for INT96 type.


Project: http://git-wip-us.apache.org/repos/asf/parquet-mr/repo
Commit: http://git-wip-us.apache.org/repos/asf/parquet-mr/commit/6e0cc729
Tree: http://git-wip-us.apache.org/repos/asf/parquet-mr/tree/6e0cc729
Diff: http://git-wip-us.apache.org/repos/asf/parquet-mr/diff/6e0cc729

Branch: refs/heads/master
Commit: 6e0cc729d06f70a674edb8272b855062b6bda7b3
Parents: 89aeec0
Author: Zoltan Ivanfi <zi...@cloudera.com>
Authored: Thu Jan 25 16:16:35 2018 +0100
Committer: Zoltan Ivanfi <zi...@cloudera.com>
Committed: Thu Jan 25 16:16:35 2018 +0100

----------------------------------------------------------------------
 .../apache/parquet/format/converter/ParquetMetadataConverter.java   | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/parquet-mr/blob/6e0cc729/parquet-hadoop/src/main/java/org/apache/parquet/format/converter/ParquetMetadataConverter.java
----------------------------------------------------------------------
diff --git a/parquet-hadoop/src/main/java/org/apache/parquet/format/converter/ParquetMetadataConverter.java b/parquet-hadoop/src/main/java/org/apache/parquet/format/converter/ParquetMetadataConverter.java
index ef59760..c4e5da3 100644
--- a/parquet-hadoop/src/main/java/org/apache/parquet/format/converter/ParquetMetadataConverter.java
+++ b/parquet-hadoop/src/main/java/org/apache/parquet/format/converter/ParquetMetadataConverter.java
@@ -495,7 +495,6 @@ public class ParquetMetadataConverter {
         return SortOrder.SIGNED;
       case BINARY:
       case FIXED_LEN_BYTE_ARRAY:
-      case INT96: // only used for timestamp, which uses unsigned values
         return SortOrder.UNSIGNED;
     }
     return SortOrder.UNKNOWN;