Github user kunal642 commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1653#discussion_r156946110
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/dataload/TestLoadDataWithMalformedCarbonCommandException.scala
---
@@ -156,4 +156,40 @@ class TestLoadDataWithMalformedCarbonCommandException
extends QueryTest with Bef
case _: Throwable => assert(false)
}
}
+
+ test("test load data with more than one char in quotechar option") {
+ try {
--- End diff --
use intercept[MalformedCarbonCommandException] instead of try catch
---