rshura commented on PR #43781:
URL: https://github.com/apache/arrow/pull/43781#issuecomment-2304767614

   This looks great, thanks!
   
   Another minor wish-list item: can there also be an interface like this:
   ```
   // HandleGetter is anything implementing GetPreparedStatementHandle
   type HandleGetter interface {
        GetPreparedStatementHandle() []byte
   }
   ```
   and then a `PreparedStatement` constructor that takes a client and a 
`HandleGetter`? e.g.
   ```
   func NewPreparedStatementFromCmd(client *Client, handleGetter HandleGetter) 
*PreparedStatement {
   ...
   }
   ```
   
   so that I can call it with request/command objects?


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