-
Notifications
You must be signed in to change notification settings - Fork 87
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
Making a INSERT query synchronous #58
Comments
@kylase can you please share the code you're running? |
The background of this issue is that we are using We were looking at changing Airflow's Presto hook to use So currently we are running the queries in
where When this code is run in the operator, it exits immediately. I would think that introducing SQLAlchemy compatibility would also help for #56? |
SQL Alchemy compatibility is definitely a feature that this client will support. That is one of the goal of implement DBAPI2. In your example, when the code exits the |
Currently when an INSERT statement is run, the request will return a
PrestoResult
immediately, is there a way to make the query synchronous?The text was updated successfully, but these errors were encountered: