Github user jackylk commented on a diff in the pull request:
https://github.com/apache/carbondata/pull/2078#discussion_r176049956
--- Diff:
integration/spark2/src/test/scala/org/apache/spark/SparkCommandSuite.scala ---
@@ -35,4 +35,22 @@ class SparkCommandSuite extends Spark2QueryTest with
BeforeAndAfterAll {
sql("CREATE TABLE src_pqt(key INT, value STRING) STORED AS PARQUET")
sql("CREATE TABLE src_orc(key INT, value STRING) STORED AS ORC")
}
+
+ test("CARBONDATA-734: Don't Support the syntax of 'STORED BY
'PARQUET''") {
+ try {
+ sql("CREATE TABLE src_pqt(key INT, value STRING) STORED AS
'PARQUET'")
--- End diff --
This is not correct, stored as parquet or orc should be supported
---