We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a077110 commit 3699f62Copy full SHA for 3699f62
setup.py
@@ -21,7 +21,7 @@
21
install_requires=[
22
# requires sqlalchemy.sql.base.DialectKWArgs.dialect_options, new in
23
# version 0.9.2
24
- 'SQLAlchemy>=0.9.2,<2.0.0',
+ 'SQLAlchemy>=0.9.2,<3.0.0',
25
'packaging',
26
],
27
classifiers=[
sqlalchemy_redshift/dialect.py
@@ -1368,9 +1368,8 @@ def on_connect(self):
1368
fns = []
1369
1370
def on_connect(conn):
1371
- from sqlalchemy import util
1372
from sqlalchemy.sql.elements import quoted_name
1373
- conn.py_types[quoted_name] = conn.py_types[util.text_type]
+ conn.py_types[quoted_name] = conn.py_types[str]
1374
1375
fns.append(on_connect)
1376
0 commit comments