-
Notifications
You must be signed in to change notification settings - Fork 97
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
python,go/adbc/driver/snowflake: returning Snowflake query ID #1143
Comments
You will have to do that for now. gosnowflake does support this so if someone wants to contribute support for exposing this, that would be welcome. I think it would be:
|
Ok, it looks like this isn't quite possible in the API we use. If we want to support this, someone will have to make a request upstream to gosnowflake first. Roughly: we use QueryArrowStream which returns a |
I'm starting to explore the adbc snowflake driver for python. Is there a way for the adbc cursor to return the Snowflake query id, like the cursor from the snowflake python connector does, after executing a query? Or do I have to run
SELECT LAST_QUERY_ID()
after I execute my SQL query? I'm not seeing anything in the documentation or in the code
The text was updated successfully, but these errors were encountered: