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 8E6E1200D4B for ; Mon, 13 Nov 2017 03:36:10 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 8D014160BF1; Mon, 13 Nov 2017 02:36:10 +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 06112160C06 for ; Mon, 13 Nov 2017 03:36:09 +0100 (CET) Received: (qmail 91981 invoked by uid 500); 13 Nov 2017 02:36:09 -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 91962 invoked by uid 99); 13 Nov 2017 02:36:09 -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; Mon, 13 Nov 2017 02:36:09 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 3224EDFC49; Mon, 13 Nov 2017 02:36:07 +0000 (UTC) From: QiangCai To: issues@carbondata.apache.org Reply-To: issues@carbondata.apache.org References: In-Reply-To: Subject: [GitHub] carbondata pull request #1480: [CARBONDATA-1693][Streaming] Change SegmentSt... Content-Type: text/plain Message-Id: <20171113023608.3224EDFC49@git1-us-west.apache.org> Date: Mon, 13 Nov 2017 02:36:07 +0000 (UTC) archived-at: Mon, 13 Nov 2017 02:36:10 -0000 Github user QiangCai commented on a diff in the pull request: https://github.com/apache/carbondata/pull/1480#discussion_r150436176 --- Diff: core/src/main/java/org/apache/carbondata/core/constants/CarbonCommonConstants.java --- @@ -522,33 +522,8 @@ * LEVEL_METADATA_FILE */ public static final String LEVEL_METADATA_FILE = "levelmetadata_"; - /** - * LOAD_STATUS SUCCESS - */ - public static final String STORE_LOADSTATUS_SUCCESS = "Success"; - /** - * LOAD_STATUS UPDATE - */ - public static final String STORE_LOADSTATUS_UPDATE = "Update"; - /** - * LOAD_STATUS FAILURE - */ - public static final String STORE_LOADSTATUS_FAILURE = "Failure"; - /** - * LOAD_STATUS PARTIAL_SUCCESS - */ - public static final String STORE_LOADSTATUS_PARTIAL_SUCCESS = "Partial Success"; - - /** - * STORE_LOADSTATUS_STREAMING - */ - public static final String STORE_LOADSTATUS_STREAMING = "Streaming"; /** - * STORE_LOADSTATUS_STREAMING - */ - public static final String STORE_LOADSTATUS_STREAMING_FINISH = "Streaming Finish"; - /** * LOAD_STATUS */ public static final String CARBON_METADATA_EXTENSION = ".metadata"; --- End diff -- The comment is not proper. ---