Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 1 addition & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,12 +86,7 @@ def readme():
"google-cloud-bigquery>=2.25.2,<4.0.0dev",
"google-cloud-bigquery-storage>=2.0.0,<3.0.0dev",
"pyarrow>=3.0.0,<7.0dev",
# Temporarily set maximimum sqlalchemy to a known-working version while
# we debug failing compliance tests. See:
# https://github.com/googleapis/python-bigquery-sqlalchemy/issues/386
# and
# https://github.com/googleapis/python-bigquery-sqlalchemy/issues/385
"sqlalchemy>=1.2.0,<=1.4.27",
"sqlalchemy>=1.2.0",
"future",
],
extras_require=extras,
Expand Down
1 change: 1 addition & 0 deletions sqlalchemy_bigquery/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -733,6 +733,7 @@ class BigQueryDialect(DefaultDialect):
supports_default_values = False
supports_empty_insert = False
supports_multivalues_insert = True
supports_statement_cache = False
supports_unicode_statements = True
supports_unicode_binds = True
supports_native_decimal = True
Expand Down