Github user kumarvishal09 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2846#discussion_r228693219
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/detailquery/CastColumnTestCase.scala
---
@@ -224,7 +224,7 @@ class CastColumnTestCase extends QueryTest with
BeforeAndAfterAll {
test("Dictionary INT In to implicit Int") {
checkAnswer(
- sql("select empno,empname,workgroupcategory from DICTIONARY_CARBON_1
where workgroupcategory in ('1', '2')"),
+ sql("select empno,empname,workgroupcategory from DICTIONARY_CARBON_1
where workgroupcategory in (1, 2)"),
--- End diff --
removed
---