zeroshade commented on code in PR #974:
URL: https://github.com/apache/arrow-adbc/pull/974#discussion_r1288864118


##########
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:
   @lidavidm Is the statement `set_option` exposed in the Python interfaces? 
Right now the queue size is only available to be adjusted by a consumer by 
using SetOption on a statement, not on connection/driver.



-- 
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]

Reply via email to