-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(go/adbc/driver/snowflake): add support for ExecuteSchema #1262
Conversation
@@ -236,15 +236,15 @@ func (s *SnowflakeQuirks) SampleTableSchemaMetadata(tblName string, dt arrow.Dat | |||
return arrow.Metadata{} | |||
} | |||
|
|||
func createTempSchema(uri string) string { | |||
func createTempSchema(database string, uri string) string { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is unrelated test cleanup.
// 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. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: docstring is out of sync (IMO, it's not necessary here since you would only use it through the interface)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It felt inconsistent with the other functions not to include it (assuming, ahem, I'd remembered to edit it...).
Fixes #1254.