Merge pull request #195 from nicholaswold/master

Exclude bigquery dialect from autocommit
pull/213/head
Catherine Devlin 2022-05-02 17:51:32 -06:00 committed by GitHub
commit 9ffaeecd18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

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