Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2177#discussion_r181993630
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/createTable/TestUnmanagedCarbonTable.scala
---
@@ -353,13 +389,17 @@ class TestUnmanagedCarbonTable extends QueryTest with
BeforeAndAfterAll {
Assert.assertNotEquals(1, dataFiles.length)
sql("DROP TABLE IF EXISTS sdkOutputTable")
+ sql("DROP TABLE IF EXISTS t1")
sql(
s"""CREATE EXTERNAL TABLE sdkOutputTable STORED BY 'carbondata'
LOCATION
|'$writerPath' """.stripMargin)
checkAnswer(sql("select count(*) from sdkOutputTable"),
Seq(Row(1000000)))
+
+
--- End diff --
remove empty line
---