Github user sraghunandan commented on a diff in the pull request:

    https://github.com/apache/carbondata/pull/1259#discussion_r133880125
  
    --- Diff: 
core/src/main/java/org/apache/carbondata/core/metadata/schema/PartitionInfo.java
 ---
    @@ -129,4 +136,77 @@ public int getPartitionId(int index) {
         return partitionIds.get(index);
       }
     
    +  @Override public void write(DataOutput out) throws IOException {
    +    out.writeInt(columnSchemaList.size());
    +    for (ColumnSchema column : columnSchemaList) {
    +      column.write(out);
    +    }
    +    out.writeInt(partitionType.ordinal());
    +    if (PartitionType.RANGE.equals(partitionType)) {
    +      out.writeInt(rangeInfo.size());
    +      for (String aValue : rangeInfo) {
    +        out.writeUTF(aValue);
    +      }
    +    }
    +
    +    out.writeInt(partitionIds.size());
    +    for (Integer intVal : partitionIds) {
    +      out.writeInt(intVal);
    +    }
    +
    +    if (PartitionType.LIST.equals(partitionType)) {
    +      out.writeInt(listInfo.size());
    +      for (List<String> aList : listInfo) {
    +        out.writeInt(aList.size());
    +        for (String aInfo : aList) {
    +          out.writeUTF(aInfo);
    +        }
    +      }
    +    }
    +
    +    out.writeInt(numPartitions);
    +    out.writeInt(MAX_PARTITION);
    --- End diff --
    
    handled.


---
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 infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

Reply via email to