Github user xubo245 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1890#discussion_r165020245
--- 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 --
ok, done
---