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