Github user xuchuanyin commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2565#discussion_r206367929
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/datamap/lucene/LuceneFineGrainDataMapSuite.scala
---
@@ -371,7 +371,7 @@ class LuceneFineGrainDataMapSuite extends QueryTest
with BeforeAndAfterAll {
"""
| CREATE TABLE datamap_test_table(id INT, name STRING, city
STRING, age INT)
| STORED BY 'carbondata'
- | TBLPROPERTIES('SORT_COLUMNS'='city,name',
'SORT_SCOPE'='GLOBAL_SORT')
+ | TBLPROPERTIES('SORT_COLUMNS'='city,name',
'SORT_SCOPE'='GLOBAL_SORT', 'CACHE_LEVEL'='BLOCKLET')
--- End diff --
By default the cache_level is BLOCK which may affect the pruning info. In
some test cases in this file, they assert on the content of pruning info. So
here, I just change the cache_level to BLOCKLET, so that I do not to modify the
assertion.
---