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 17C2C200D16 for ; Tue, 10 Oct 2017 16:18:18 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 162D61609E5; Tue, 10 Oct 2017 14:18:18 +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 536EE160BE0 for ; Tue, 10 Oct 2017 16:18:17 +0200 (CEST) Received: (qmail 42058 invoked by uid 500); 10 Oct 2017 14:18:16 -0000 Mailing-List: contact issues-help@carbondata.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@carbondata.apache.org Delivered-To: mailing list issues@carbondata.apache.org Received: (qmail 42049 invoked by uid 99); 10 Oct 2017 14:18:16 -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, 10 Oct 2017 14:18:16 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 97201F5D26; Tue, 10 Oct 2017 14:18:15 +0000 (UTC) From: sounakr To: issues@carbondata.apache.org Reply-To: issues@carbondata.apache.org References: In-Reply-To: Subject: [GitHub] carbondata pull request #1359: [CARBONDATA-1480]Min Max Index Example for Da... Content-Type: text/plain Message-Id: <20171010141815.97201F5D26@git1-us-west.apache.org> Date: Tue, 10 Oct 2017 14:18:15 +0000 (UTC) archived-at: Tue, 10 Oct 2017 14:18:18 -0000 Github user sounakr commented on a diff in the pull request: https://github.com/apache/carbondata/pull/1359#discussion_r143741467 --- Diff: core/src/main/java/org/apache/carbondata/core/indexstore/blockletindex/BlockletDataMapFactory.java --- @@ -219,4 +225,27 @@ public DataMapMeta getMeta() { // TODO: pass SORT_COLUMNS into this class return null; } + + @Override public SegmentProperties getSegmentProperties(String segmentId) throws IOException { + SegmentProperties segmentProperties = null; --- End diff -- Done. ---