Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2684#discussion_r214627013
--- Diff:
integration/spark2/src/main/scala/org/apache/spark/sql/CarbonDataFrameWriter.scala
---
@@ -81,6 +81,7 @@ class CarbonDataFrameWriter(sqlContext: SQLContext, val
dataFrame: DataFrame) {
private def makeCreateTableString(schema: StructType, options:
CarbonOption): String = {
val property = Map(
"SORT_COLUMNS" -> options.sortColumns,
+ "SORT_SCOPE" -> options.sortScope,
--- End diff --
I think you can refer to CREATE TABLE section in
http://carbondata.apache.org/data-management-on-carbondata.html
---