Exclude bigquery dialect from autocommit

pull/195/head
Nicholas Wold 2021-05-26 17:03:19 -07:00
parent ee7e209744
commit 873893a387
No known key found for this signature in database
GPG Key ID: A6DDE489A88DF8CB
1 changed files with 1 additions and 1 deletions

View File

@ -331,7 +331,7 @@ class FakeResultProxy(object):
# some dialects have autocommit
# specific dialects break when commit is used:
_COMMIT_BLACKLIST_DIALECTS = ("mssql", "clickhouse", "teradata", "athena", "vertica")
_COMMIT_BLACKLIST_DIALECTS = ("mssql", "clickhouse", "teradata", "athena", "vertica", "bigquery")
def _commit(conn, config):