Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2378#discussion_r195890375
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/detailquery/SearchModeTestCase.scala
---
@@ -111,22 +111,26 @@ class SearchModeTestCase extends QueryTest with
BeforeAndAfterAll {
}
test("test lucene datamap with search mode") {
+ sql("set carbon.search.enabled = true")
sql("DROP DATAMAP IF EXISTS dm ON TABLE main")
sql("CREATE DATAMAP dm ON TABLE main USING 'lucene'
DMProperties('INDEX_COLUMNS'='id') ")
+ sql(s"SELECT * FROM main WHERE id='100000'").show()
--- End diff --
This is not required, remove it
---