CurtHagenlocher commented on issue #1242: URL: https://github.com/apache/arrow-adbc/issues/1242#issuecomment-1792744006
There's a fair amount of logic in https://github.com/snowflakedb/gosnowflake/blob/master/converter.go which simply isn't reflected in the ADBC driver. Specifically, Snowflake will use lower-precision integer types to return lower-precision decimal values e.g. a decimal(9, 2) could be returned as an Arrow int32 and would need to be widened and not just converted as-is. This affects both the high-precision and low-precision code paths. I can take a look at addressing this, but it will be the first time I've written Go ;). -- 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]
