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.
2 parents 3dc8df9 + 63995ad commit 25721c3Copy full SHA for 25721c3
clickhouse_sqlalchemy/drivers/asynch/connector.py
@@ -146,7 +146,7 @@ def _init_dbapi_attributes(self):
146
def connect(self, *args, **kwargs) -> 'AsyncAdapt_asynch_connection':
147
return AsyncAdapt_asynch_connection(
148
self,
149
- await_only(self.asynch.connect(*args, **kwargs))
+ self.asynch.connection.Connection(*args, **kwargs)
150
)
151
152
setup.py
@@ -99,7 +99,7 @@ def read_version():
99
'sqlalchemy>=2.0.0,<2.1.0',
100
'requests',
101
'clickhouse-driver>=0.1.2',
102
- 'asynch>=0.2.2,<=0.2.4',
+ 'asynch>=0.2.5',
103
],
104
# Registering `clickhouse` as dialect.
105
entry_points={
0 commit comments