Github user dongjoon-hyun commented on a diff in the pull request: https://github.com/apache/spark/pull/19943#discussion_r158912766 --- Diff: sql/core/src/main/scala/org/apache/spark/sql/execution/DataSourceScanExec.scala --- @@ -170,6 +171,8 @@ case class FileSourceScanExec( val needsUnsafeRowConversion: Boolean = if (relation.fileFormat.isInstanceOf[ParquetSource]) { SparkSession.getActiveSession.get.sessionState.conf.parquetVectorizedReaderEnabled + } else if (relation.fileFormat.isInstanceOf[OrcFileFormat]) { + SparkSession.getActiveSession.get.sessionState.conf.orcVectorizedReaderEnabled --- End diff -- Yep. I'll revert the change on this file, @viirya .
--- --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org