ulysses-you commented on code in PR #6062:
URL: https://github.com/apache/incubator-gluten/pull/6062#discussion_r1637337315
##########
backends-velox/src/main/scala/org/apache/gluten/backendsapi/velox/VeloxBackend.scala:
##########
@@ -222,8 +223,10 @@ object VeloxBackendSettings extends BackendSettingsApi {
def validateFileFormat(): Option[String] = {
format match {
- case _: ParquetFileFormat => None
- case _: FileFormat => Some("Only parquet fileformat is supported in
Velox backend.")
+ case _: ParquetFileFormat => None // Parquet is directly supported
+ case h: HiveFileFormat if h.toString.contains("parquet") => None //
Parquet via Hive SerDe
+ case _ =>
+ Some("Only parquet fileformat is supported in Velox backend.") //
Unsupported format
Review Comment:
Can we add one more config to control if we transofrm hive file format ? We
can enable it by defualt.
--
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]