pan3793 commented on code in PR #54467:
URL: https://github.com/apache/spark/pull/54467#discussion_r2853746162
##########
sql/hive/src/test/scala/org/apache/spark/sql/hive/HiveMetastoreCatalogSuite.scala:
##########
@@ -498,4 +498,21 @@ class DataSourceWithHiveMetastoreCatalogSuite
assert(spark.table("t").schema ===
CatalystSqlParser.parseTableSchema(schema))
}
}
+
+ test("SPARK-55645: Read/write Serde Name to/from an external table") {
+ withTable("t") {
+ sql("""CREATE TABLE t (d1 DECIMAL(10,3), d2 STRING)
+ |STORED AS TEXTFILE
+ |""".stripMargin)
Review Comment:
it fits a single line
```suggestion
sql("CREATE TABLE t (d1 DECIMAL(10,3), d2 STRING) STORED AS TEXTFILE")
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]