Github user liancheng commented on a diff in the pull request:
https://github.com/apache/spark/pull/5034#discussion_r26449101
--- Diff:
sql/core/src/main/scala/org/apache/spark/sql/parquet/newParquet.scala ---
@@ -672,7 +672,11 @@ private[sql] object ParquetRelation2 {
.getKeyValueMetaData
.toMap
.get(RowReadSupport.SPARK_METADATA_KEY)
- .map(DataType.fromJson(_).asInstanceOf[StructType])
+ .map { serializedSchema =>
+ Try(DataType.fromJson(serializedSchema))
--- End diff --
Hm, after double thinking this, we may not need a log here. Because the
user doesn't need to care about using JSON or old style case class string when
reading/writing Parquet files. Spark SQL handles this automatically.
---
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]