This is an automated email from the ASF dual-hosted git repository.
zeroshade 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 bacc57fea fix(go/adbc/driver/snowflake): update default values for
fetch params (#2325)
bacc57fea is described below
commit bacc57feadd4d61974a52e7e9c911a7a7e6e7d62
Author: Matt Topol <[email protected]>
AuthorDate: Wed Nov 13 10:13:14 2024 -0500
fix(go/adbc/driver/snowflake): update default values for fetch params
(#2325)
fixes #2123
---
go/adbc/driver/snowflake/connection.go | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/go/adbc/driver/snowflake/connection.go
b/go/adbc/driver/snowflake/connection.go
index d8371beb7..04addb1a9 100644
--- a/go/adbc/driver/snowflake/connection.go
+++ b/go/adbc/driver/snowflake/connection.go
@@ -40,8 +40,8 @@ import (
)
const (
- defaultStatementQueueSize = 200
- defaultPrefetchConcurrency = 10
+ defaultStatementQueueSize = 100
+ defaultPrefetchConcurrency = 5
queryTemplateGetObjectsAll = "get_objects_all.sql"
queryTemplateGetObjectsDbSchemas = "get_objects_dbschemas.sql"