Fix upstream issue 148

Fixes upstream https://github.com/catherinedevlin/ipython-sql/issues/148 by adding "vertica" to dialects with broken commit
pull/183/head
bryanherger 2020-10-27 07:02:08 -04:00
parent b24ac6e941
commit a2319fd866
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")
_COMMIT_BLACKLIST_DIALECTS = ("mssql", "clickhouse", "teradata", "athena", "vertica")
def _commit(conn, config):