Github user xuchuanyin commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1994#discussion_r170244470
--- Diff:
integration/spark2/src/test/scala/org/apache/carbondata/spark/testsuite/booleantype/BooleanDataTypesInsertTest.scala
---
@@ -555,7 +556,7 @@ class BooleanDataTypesInsertTest extends QueryTest with
BeforeAndAfterEach with
sql(
s"""
- | LOAD DATA LOCAL INPATH '${storeLocation}'
+ | LOAD DATA LOCAL INPATH
'${FileFactory.getUpdatedFilePath(storeLocation)}'
--- End diff --
FYI:
In windows env, path like 'D:\01_carbon' will cause problem, because it
will treat â\0âas a single character '\0'.
---