Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/1995#discussion_r170408178
--- Diff:
integration/spark-common-test/src/test/scala/org/apache/carbondata/spark/testsuite/createTable/TestCreateExternalTable.scala
---
@@ -30,14 +30,14 @@ class TestCreateExternalTable extends QueryTest with
BeforeAndAfterAll {
override def beforeAll(): Unit = {
sql("DROP TABLE IF EXISTS origin")
// create carbon table and insert data
- sql("CREATE TABLE origin(key INT, value STRING) STORED BY
'carbondata'")
- sql("INSERT INTO origin select 100,'spark'")
- sql("INSERT INTO origin select 200,'hive'")
+ sql("CREATE TABLE origin(name String, age int) STORED BY 'carbondata'")
--- End diff --
why this is modified?
---