Github user sounakr commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2209#discussion_r184961725
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/createTable/TestNonTransactionalCarbonTable.scala
---
@@ -175,9 +175,31 @@ class TestNonTransactionalCarbonTable extends
QueryTest with BeforeAndAfterAll {
test("test create External Table with Schema with partition, should
ignore schema and partition")
{
- buildTestDataSingleFile()
+ sql("DROP TABLE IF EXISTS sdkOutputTable")
+
+ // with partition
+ sql("CREATE EXTERNAL TABLE sdkOutputTable(name string) PARTITIONED BY
(age int) STORED BY 'carbondata' LOCATION '/home/root1/avro/files' ")
+//
+// checkAnswer(sql("select * from sdkOutputTable"), Seq(Row("robot0",
0, 0.0),
+// Row("robot1", 1, 0.5),
+// Row("robot2", 2, 1.0)))
--- End diff --
Done
---