jinchengchenghh commented on issue #11980: URL: https://github.com/apache/gluten/issues/11980#issuecomment-4396546362
This is because you create a table with decimal(20, 0) but the source orc file schema is decimal(38, 18), Velox outputs the incorrect case in this corner case. Usually, the source table data type should align with the file data type, we support read data different with other data type in parquet reader, but we don't have similar logic in orc. You may need a feature like this one https://github.com/facebookincubator/velox/pull/15343/changes -- 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]
