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 757DA200CDF for ; Thu, 17 Aug 2017 11:15:06 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 73D9D16A87C; Thu, 17 Aug 2017 09:15:06 +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 DCD4616A878 for ; Thu, 17 Aug 2017 11:15:05 +0200 (CEST) Received: (qmail 28232 invoked by uid 500); 17 Aug 2017 09:15:04 -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 28223 invoked by uid 99); 17 Aug 2017 09:15:04 -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; Thu, 17 Aug 2017 09:15:04 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8FC09DFA43; Thu, 17 Aug 2017 09:15:04 +0000 (UTC) From: jackylk To: issues@carbondata.apache.org Reply-To: issues@carbondata.apache.org References: In-Reply-To: Subject: [GitHub] carbondata pull request #1259: [Review][CARBONDATA-1381] Add test cases for ... Content-Type: text/plain Message-Id: <20170817091504.8FC09DFA43@git1-us-west.apache.org> Date: Thu, 17 Aug 2017 09:15:04 +0000 (UTC) archived-at: Thu, 17 Aug 2017 09:15:06 -0000 Github user jackylk commented on a diff in the pull request: https://github.com/apache/carbondata/pull/1259#discussion_r133662025 --- Diff: core/src/main/java/org/apache/carbondata/core/metadata/schema/BucketingInfo.java --- @@ -44,4 +51,21 @@ public int getNumberOfBuckets() { return numberOfBuckets; } + @Override public void write(DataOutput out) throws IOException { + out.writeInt(numberOfBuckets); + out.writeInt(listOfColumns.size()); + for (ColumnSchema aColSchema : listOfColumns) { + aColSchema.write(out); + } + } + + @Override public void readFields(DataInput in) throws IOException { + this.numberOfBuckets = in.readInt(); + int colSchemaSize = in.readInt(); + listOfColumns = new ArrayList<>(colSchemaSize); + for (int i = 0; i < colSchemaSize; i++) { + ColumnSchema aSchema = new ColumnSchema(); + aSchema.readFields(in); --- End diff -- need to add it in `listOfColumns` --- 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. ---