amoeba opened a new issue, #4185: URL: https://github.com/apache/arrow-adbc/issues/4185
### What feature or improvement would you like to see? The Go sqldriver ADBC interface doesn't support the more complex types such as list/map/struct and some more. When users try to return results involving these types, they get this error from `Next()`: https://github.com/apache/arrow-adbc/blob/c4f286c4f0cedbb9426d14bf7b55be51a0fbc52e/go/adbc/sqldriver/driver.go#L741-L746 And queries like these fail with it, - `SELECT [3, 11, 17] AS my_list_col` - `SELECT {'x': 3, 'y': eleven'} AS my_struct_col` - `SELECT MAP(['a, 'b'], [3, 11]) AS my_map_col` The workaround for now is to drop down into the low level Go ADBC interfaces (where the types are supported). -- 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]
