Github user kunal642 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2450#discussion_r200610555
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/localdictionary/LocalDictionarySupportAlterTableTest.scala
---
@@ -822,17 +821,17 @@ class LocalDictionarySupportAlterTableTest extends
QueryTest with BeforeAndAfter
sql(
"""
| CREATE TABLE local1(id int, name string, city string, age
int,add string)
- | STORED BY 'carbondata'
tblproperties('local_dictionary_include'='city')
+ | STORED BY 'carbondata'
tblproperties('local_dictionary_exclude'='city')
--- End diff --
change local_dictionary_exclude to local_dictionary_include as the name
suggests
---