zeroshade commented on code in PR #974:
URL: https://github.com/apache/arrow-adbc/pull/974#discussion_r1288886297
##########
go/adbc/driver/snowflake/connection.go:
##########
@@ -777,8 +779,9 @@ func (c *cnxn) Rollback(_ context.Context) error {
// NewStatement initializes a new statement object tied to this connection
func (c *cnxn) NewStatement() (adbc.Statement, error) {
return &statement{
- alloc: c.db.alloc,
- cnxn: c,
+ alloc: c.db.alloc,
+ cnxn: c,
+ queueSize: defaultStatementQueueSize,
Review Comment:
Okay, I'll switch these to formal config params rather than using an env var
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]