This is an automated email from the ASF dual-hosted git repository.
lidavidm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new 8996e363d fix(go/adbc/driver/bigquery): accept old auth option value
(#3317)
8996e363d is described below
commit 8996e363dabde7cbe78e3b40d978a668de9c111f
Author: David Li <[email protected]>
AuthorDate: Thu Aug 21 08:29:33 2025 +0900
fix(go/adbc/driver/bigquery): accept old auth option value (#3317)
Fix a regression.
---
go/adbc/driver/bigquery/connection.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/go/adbc/driver/bigquery/connection.go
b/go/adbc/driver/bigquery/connection.go
index 1b54aa63b..6b280252b 100644
--- a/go/adbc/driver/bigquery/connection.go
+++ b/go/adbc/driver/bigquery/connection.go
@@ -581,7 +581,7 @@ func (c *connectionImpl) newClient(ctx context.Context)
error {
}
}
authOptions = append(authOptions, option.WithTokenSource(c))
- case OptionValueAuthTypeAppDefaultCredentials, "":
+ case OptionValueAuthTypeAppDefaultCredentials,
OptionValueAuthTypeDefault, "":
// Use Application Default Credentials (default behavior)
// No additional options needed - ADC is used by default
default: