dtenedor commented on code in PR #36778: URL: https://github.com/apache/spark/pull/36778#discussion_r899727782
########## sql/catalyst/src/main/scala/org/apache/spark/sql/types/StructType.scala: ########## @@ -519,6 +519,7 @@ case class StructType(fields: Array[StructField]) extends DataType with Seq[Stru private[sql] lazy val existenceDefaultValues: Array[Any] = getExistenceDefaultValues(this) private[sql] lazy val existenceDefaultsBitmask: Array[Boolean] = getExistenceDefaultsBitmask(this) private[sql] lazy val hasExistenceDefaultValues = existenceDefaultValues.exists(_ != null) + private[sql] lazy val defaultColumnAnalyzer: Analyzer = DefaultColumnAnalyzer Review Comment: Sure, thanks for catching this, done. -- 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]
