Github user ravipesala commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1890#discussion_r164985896
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/datamap/TestDataMapCommand.scala
---
@@ -244,7 +244,7 @@ class TestDataMapCommand extends QueryTest with
BeforeAndAfterAll {
test("create pre-agg table with path") {
sql("drop table if exists main_preagg")
sql("drop table if exists main ")
- val path = "./preAggTestPath"
+ val path = System.getProperty("java.io.tmpdir") + "/" +
System.nanoTime + "_preAggTestPath"
--- End diff --
Can you point to target folder so that it will clean for every run.
---