Catherine Devlin 2022-06-10 08:16:38 -05:00
commit faa26ee838
2 changed files with 5 additions and 1 deletions

View File

@ -39,6 +39,9 @@ setup(
author="Catherine Devlin",
author_email="catherine.devlin@gmail.com",
url="https://pypi.python.org/pypi/ipython-sql",
project_urls={
"Source": "https://github.com/catherinedevlin/ipython-sql",
},
license="MIT",
packages=find_packages("src"),
package_dir={"": "src"},

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):