Github user manishgupta88 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2387#discussion_r197015265
--- Diff:
integration/spark2/src/test/scala/org/apache/carbondata/datamap/bloom/BloomCoarseGrainDataMapSuite.scala
---
@@ -37,6 +39,11 @@ class BloomCoarseGrainDataMapSuite extends QueryTest
with BeforeAndAfterAll with
val dataMapName = "bloom_dm"
override protected def beforeAll(): Unit = {
+ val path: String = new File(
+ classOf[DiskBasedDMSchemaStorageProvider].getResource("/").getPath +
"../").getCanonicalPath
+ .replaceAll("\\\\", "/")
--- End diff --
Also check if there is any generic location that we can give here...may be
you can take reference from the spark UT framework where we add the location in
spark-common
---