xiaonanyang-db commented on code in PR #52093: URL: https://github.com/apache/spark/pull/52093#discussion_r2294401284
########## sql/catalyst/src/main/scala/org/apache/spark/sql/catalyst/xml/StaxXmlParser.scala: ########## @@ -1035,18 +1035,31 @@ object StaxXmlParser { } def convertStream[T](inputStream: () => InputStream, options: XmlOptions)( - convert: StaxXMLRecordReader => T): Iterator[T] = new Iterator[T] { - private val reader = StaxXMLRecordReader(inputStream, options) + convert: StaxXMLRecordReader => T): Iterator[T] = + try { + new Iterator[T] { + private val reader = StaxXMLRecordReader(inputStream, options) - override def hasNext: Boolean = reader.hasMoreRecord Review Comment: Actually, I found another way to defer the initialization. Updated the PR with the changes, PTAL -- 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: reviews-unsubscr...@spark.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org