alinaliBQ opened a new issue, #47159: URL: https://github.com/apache/arrow/issues/47159
### Describe the enhancement requested Currently, NUM_PREC_RADIX column in SQLColumns is returning default values based on data types. The code makes an assumption that the server always returns number of digits for decimal, numeric, smallint, tinyint, integer, and bigint data types. And assumes the server returns number of bits for real, float, and double. But the server could return number of bits for non-floating point data too. The driver needs a reliable way to tell if COLUMN_SIZE is returning number of digits or bits for the data type. Suggested AC: - For SQLColumns, return NUM_PREC_RADIX based on COLUMN_SIZE instead of default values based on data type. ----- Parent issue: https://github.com/apache/arrow/issues/30622 ### Component(s) C++, FlightRPC -- 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]
