phillipleblanc opened a new issue, #43403: URL: https://github.com/apache/arrow/issues/43403
### Describe the bug, including details regarding any error messages, version, and platform. The Go flightsql database driver currently does not handle scanning string or byte values where the Arrow type is LargeString or LargeBinary. This code will fail with `type *array.LargeString: not supported` today ```go db, err := sql.Open("flightsql", "flightsql://some_endpoint") if err != nil { panic(err) } defer db.Close() row := db.QueryRow("SELECT string_value FROM table LIMIT 1") log.Println("Reading row") var string_value string if err := rows.Scan(&string_value); err != nil { // If `string_value` is a LargeString type, this will error } ``` ### Component(s) 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: issues-unsubscr...@arrow.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org