Github user QiangCai commented on a diff in the pull request:
https://github.com/apache/incubator-carbondata/pull/810#discussion_r112102662
--- Diff: format/src/main/thrift/schema.thrift ---
@@ -121,6 +127,27 @@ struct SchemaEvolution{
}
/**
+ * One partition in table
+ */
+struct SinglePartition{
+ 1: required i32 partition_id;
+ 2: required list<ColumnSchema> partition_columns;
+ 3: required list<Partitioning> partitioning_list;
+ 4: required list<string> boundary_value_list;
+ 5: optional string partition_name;
+}
+
+/**
+ * Partition information of table
+ */
+struct PartitionInfo{
+ 1: required list<SinglePartition> partition_list;
+ 2: required list<ColumnSchema> partition_columns;
+ 3: required list<Partitioning> partitioning_list;
+ 4: required i32 number_of_partitions;
--- End diff --
this is optional
---
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 [email protected] or file a JIRA ticket
with INFRA.
---