Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1565#discussion_r155293926
--- Diff:
core/src/main/java/org/apache/carbondata/core/metadata/schema/table/column/ColumnSchema.java
---
@@ -126,8 +126,16 @@
*/
private String aggFunction = "";
+ /**
+ * list of parent column relations
+ */
private List<ParentColumnTableRelation> parentColumnTableRelations;
+ /**
+ * timeseries function applied on column
+ */
+ private String timeSeriesFunction = "";
--- End diff --
@kumarvishal09 I don't think it is required to add timeSeriesFunction here,
just rename aggFunction to function and use the same for both aggFunction and
timeseries function.
---