Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 1C074200CF2 for ; Wed, 9 Aug 2017 00:11:05 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 1A82B160EA9; Tue, 8 Aug 2017 22:11:05 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 8308A160EA2 for ; Wed, 9 Aug 2017 00:11:04 +0200 (CEST) Received: (qmail 30383 invoked by uid 500); 8 Aug 2017 22:11:03 -0000 Mailing-List: contact dev-help@orc.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@orc.apache.org Delivered-To: mailing list dev@orc.apache.org Received: (qmail 30290 invoked by uid 99); 8 Aug 2017 22:11:03 -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; Tue, 08 Aug 2017 22:11:03 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id ED9A2DFF66; Tue, 8 Aug 2017 22:11:02 +0000 (UTC) From: wgtmac To: dev@orc.apache.org Reply-To: dev@orc.apache.org Message-ID: Subject: [GitHub] orc pull request #149: ORC-224: Implement column writers of primitive types Content-Type: text/plain Date: Tue, 8 Aug 2017 22:11:02 +0000 (UTC) archived-at: Tue, 08 Aug 2017 22:11:05 -0000 GitHub user wgtmac opened a pull request: https://github.com/apache/orc/pull/149 ORC-224: Implement column writers of primitive types 1. Implementation of ColumnWriters for float, double, tinyint, boolean, string, char, varchar, binary, date, timestamp and decimal types. 2. Only support RleVersion1. RleVersion2 and dictionary encoding for string types are not implemented in this patch. 3. Added tests in TestWriter.cc. You can merge this pull request into a Git repository by running: $ git pull https://github.com/wgtmac/orc ORC-224 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/orc/pull/149.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #149 ---- commit 0a9bcc0c61261dce65956a83b54dcf581844e976 Author: Gang Wu Date: 2017-08-08T22:07:06Z ORC-224: Implement column writers of primitive types ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---