This is an automated email from the ASF dual-hosted git repository.
zeroshade pushed a commit to branch
dependabot/go_modules/go/adbc/github.com/snowflakedb/gosnowflake-1.17.1
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to
refs/heads/dependabot/go_modules/go/adbc/github.com/snowflakedb/gosnowflake-1.17.1
by this push:
new fd0e81e89 use nolint directives for now
fd0e81e89 is described below
commit fd0e81e8989a30ee8a6a4f7076a4da8b8871fc85
Author: Matt Topol <[email protected]>
AuthorDate: Mon Nov 17 13:54:42 2025 -0500
use nolint directives for now
---
go/adbc/driver/snowflake/snowflake_database.go | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/go/adbc/driver/snowflake/snowflake_database.go
b/go/adbc/driver/snowflake/snowflake_database.go
index 84e00d06b..7539ece15 100644
--- a/go/adbc/driver/snowflake/snowflake_database.go
+++ b/go/adbc/driver/snowflake/snowflake_database.go
@@ -82,6 +82,7 @@ type databaseImpl struct {
defaultAppName string
}
+//nolint:staticcheck // ignore snowflake deprecated warnings for now
func (d *databaseImpl) GetOption(key string) (string, error) {
switch key {
case adbc.OptionKeyUsername:
@@ -199,6 +200,7 @@ func (d *databaseImpl) SetOptions(cnOptions
map[string]string) error {
}
// XXX(https://github.com/apache/arrow-adbc/issues/2792): Snowflake
// has a tendency to spam the log by default, so set the log level
+ //nolint:staticcheck // ignore snowflake deprecated warnings for now
d.cfg.Tracing = "fatal"
// set default application name to track
@@ -218,6 +220,8 @@ func (d *databaseImpl) SetOptions(cnOptions
map[string]string) error {
// SetOptionInternal sets the option for the database.
//
// cnOptions is nil if the option is being set post-initialiation.
+//
+//nolint:staticcheck // ignore snowflake deprecated warnings for now
func (d *databaseImpl) SetOptionInternal(k string, v string, cnOptions
*map[string]string) error {
var err error
var ok bool