Description
While creating carbondata table from dataframe, `sort_column` property is not specified, which by default will use all string columns as `sort_column`. So an option is required to specify it as below:
```scala
df.write
.format("carbondata")
.options(...)
.option("sort_columns", "c1,c2")
.save
```
Attachments
Issue Links
- links to