Github user xuchuanyin commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2868#discussion_r229146066
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/detailquery/SubqueryWithFilterAndSortTestCase.scala
---
@@ -64,15 +67,14 @@ class SubqueryWithFilterAndSortTestCase extends
QueryTest with BeforeAndAfterAll
dis.close()
}
def deleteFile(filePath: String) {
- val file = FileFactory.getCarbonFile(filePath,
FileFactory.getFileType(filePath))
+ val file = new File(filePath)
--- End diff --
why is this modification needed?
---