Github user manishgupta88 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2294#discussion_r187343421
--- Diff:
core/src/main/java/org/apache/carbondata/core/metadata/schema/table/TableSchemaBuilder.java
---
@@ -114,12 +115,12 @@ public void setSortColumns(List<ColumnSchema>
sortColumns) {
this.sortColumns = sortColumns;
}
- public ColumnSchema addColumn(StructField field, boolean isSortColumn) {
- return addColumn(field, null, isSortColumn, false);
+ public ColumnSchema addColumn(StructField field, AtomicInteger valIndex,
boolean isSortColumn) {
--- End diff --
AtomicInteger is not used here for multi threading purpose. It is used for
incrementing a value for complex boolean array type to assign child column name
---