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 e1067e5 + c3f555f commit 4ee7e46Copy full SHA for 4ee7e46
ydb_sqlalchemy/sqlalchemy/dbapi_adapter.py
@@ -66,7 +66,10 @@ def get_table_names(self):
66
return await_only(self._connection.get_table_names())
67
68
69
+# TODO(vgvoleg): Migrate to AsyncAdapt_dbapi_cursor and AsyncAdapt_dbapi_connection
70
class AdaptedAsyncCursor:
71
+ _awaitable_cursor_close: bool = False
72
+
73
def __init__(self, cursor: AsyncCursor):
74
self._cursor = cursor
75
@@ -112,3 +115,6 @@ def setinputsizes(self, *args):
112
115
113
116
def setoutputsizes(self, *args):
114
117
pass
118
119
+ async def _async_soft_close(self) -> None:
120
+ pass
0 commit comments