stevomitric opened a new pull request, #56661: URL: https://github.com/apache/spark/pull/56661
### What changes were proposed in this pull request? Add vectorized-read integration. Routes `TimeType`'s vectorized Parquet updater through the framework (keyed on the Spark `DataType`) instead of the hardcoded `instanceof TimeType` arm in `ParquetVectorUpdaterFactory`. ### Why are the changes needed? The vectorized (default) read path was the last Parquet site hardcoding `TimeType`. Routing it through the framework lets future framework types supply their own batch updater with no factory changes, and makes `ParquetTypeOps.isBatchReadSupported = true` honest for `TimeType`. ### Does this PR introduce _any_ user-facing change? No. `TimeMicrosToNanosUpdater` does the same micros→nanos conversion as the removed `LongAsNanosUpdater`. ### How was this patch tested? Extended `TimeTypeParquetOpsSuite`. ### Was this patch authored or co-authored using generative AI tooling? Generated-by: Claude Code (Claude Opus 4.8) -- 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]
