Github user akashrn5 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2390#discussion_r197019082
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/localdictionary/LocalDictionarySupportCreateTableTest.scala
---
@@ -723,16 +721,19 @@ class LocalDictionarySupportCreateTableTest extends
QueryTest with BeforeAndAfte
"is configured _005")
{
sql("drop table if exists local1")
- intercept[MalformedCarbonCommandException] {
+ val exception = intercept[MalformedCarbonCommandException] {
sql(
"""
| CREATE TABLE local1(id int, name string, city string, age int)
| STORED BY 'org.apache.carbondata.format'
|
tblproperties('local_dictionary_enable'='true','local_dictionary_include'='name,city',
- | 'local_dictionary_exclude'='name')
+ | 'local_dictionary_exclude'='city')
--- End diff --
better to change exiting test case only for case sensitive check
---