gengliangwang commented on code in PR #36158: URL: https://github.com/apache/spark/pull/36158#discussion_r849303299
########## sql/core/src/main/scala/org/apache/spark/sql/execution/datasources/parquet/ParquetRowConverter.scala: ########## @@ -484,7 +484,8 @@ private[parquet] class ParquetRowConverter( // can be read as Spark's TimestampNTZ type. This is to avoid mistakes in reading the timestamp // values. private def canReadAsTimestampNTZ(parquetType: Type): Boolean = - parquetType.asPrimitiveType().getPrimitiveTypeName == INT64 && + SQLConf.get.timestampNTZSupportEnabled && Review Comment: Shall we expose `timestampNTZEnabled` in `ParquetToSparkSchemaConverter` and get it here? -- 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]
