Github user gatorsmile commented on a diff in the pull request:
https://github.com/apache/spark/pull/17406#discussion_r107966362
--- Diff:
sql/hive/src/test/scala/org/apache/spark/sql/sources/SimpleTextRelation.scala
---
@@ -36,7 +38,13 @@ class SimpleTextSource extends TextBasedFileFormat with
DataSourceRegister {
sparkSession: SparkSession,
options: Map[String, String],
files: Seq[FileStatus]): Option[StructType] = {
- Some(DataType.fromJson(options("dataSchema")).asInstanceOf[StructType])
+ val schemaAsString = options("dataSchema")
+ val schema = try {
+ DataType.fromJson(schemaAsString)
+ } catch {
+ case NonFatal(_) => DataType.fromDdl(schemaAsString)
+ }
+ Some(schema.asInstanceOf[StructType])
--- End diff --
`SimpleTextSource` is just a faked source. What is the reason you made
these changes?
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]