Github user qiuchenjian commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2684#discussion_r214623582
--- 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 can't list all of the properties of table, any class record this ?
---