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 BB42B200CB1 for ; Sat, 24 Jun 2017 12:01:24 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B9E33160BE6; Sat, 24 Jun 2017 10:01:24 +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 3356F160BDA for ; Sat, 24 Jun 2017 12:01:24 +0200 (CEST) Received: (qmail 47800 invoked by uid 500); 24 Jun 2017 10:01:23 -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 47791 invoked by uid 99); 24 Jun 2017 10:01:23 -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; Sat, 24 Jun 2017 10:01:23 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id F2A32DFB92; Sat, 24 Jun 2017 10:01:21 +0000 (UTC) From: chenliang613 To: issues@carbondata.apache.org Reply-To: issues@carbondata.apache.org References: In-Reply-To: Subject: [GitHub] carbondata pull request #1075: [WIP] Datamap implementation for Blocklet. Content-Type: text/plain Message-Id: <20170624100121.F2A32DFB92@git1-us-west.apache.org> Date: Sat, 24 Jun 2017 10:01:21 +0000 (UTC) archived-at: Sat, 24 Jun 2017 10:01:24 -0000 Github user chenliang613 commented on a diff in the pull request: https://github.com/apache/carbondata/pull/1075#discussion_r123874656 --- Diff: core/src/main/java/org/apache/carbondata/core/indexstore/AbstractTableDataMap.java --- @@ -26,28 +27,28 @@ * DataMap at the table level, user can add any number of datamaps for one table. Depends * on the filter condition it can prune the blocklets. */ -public interface TableDataMap extends EventListener { +public abstract class AbstractTableDataMap implements EventListener { /** * It is called to initialize and load the required table datamap metadata. */ - void init(AbsoluteTableIdentifier identifier, String dataMapName); + public abstract void init(AbsoluteTableIdentifier identifier, String dataMapName); /** * Gives the writer to write the metadata information of this datamap at table level. --- End diff -- Please use "Get the datamap writer" to replace "Gives the writer" --- 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. ---