birschick-bq commented on code in PR #2729: URL: https://github.com/apache/arrow-adbc/pull/2729#discussion_r2085617580
########## go/adbc/driver/internal/driverbase/connection.go: ########## @@ -239,9 +260,16 @@ func (base *ConnectionImplBase) GetOptionInt(key string) (int64, error) { } func (base *ConnectionImplBase) SetOption(key string, val string) error { - switch key { + switch strings.ToLower(strings.TrimSpace(key)) { Review Comment: Removed unnecessary `TrimSpace` calls -- 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: github-unsubscr...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org