lidavidm commented on code in PR #1262:
URL: https://github.com/apache/arrow-adbc/pull/1262#discussion_r1383947552
##########
go/adbc/driver/snowflake/statement.go:
##########
@@ -584,6 +584,41 @@ func (st *statement) ExecuteUpdate(ctx context.Context)
(int64, error) {
return n, nil
}
+// ExecuteQuery executes the current query or prepared statement
+// and returnes a RecordReader for the results along with the number
+// of rows affected if known, otherwise it will be -1.
+//
+// This invalidates any prior result sets on this statement.
Review Comment:
nit: docstring is out of sync (IMO, it's not necessary here since you would
only use it through the interface)
--
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]