Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2748#discussion_r219658382
--- Diff:
integration/spark-datasource/src/main/scala/org/apache/spark/sql/carbondata/execution/datasources/CarbonSparkDataSourceUtil.scala
---
@@ -269,4 +273,99 @@ object CarbonSparkDataSourceUtil {
}
model
}
+
+ def validateTableOptions(options: Map[String, String], schema: Schema):
Unit = {
+
+ if (options.contains(CarbonCommonConstants.DICTIONARY_EXCLUDE)) {
--- End diff --
NO need of this validation. it does not support here. Please remove.
---