We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2eacadb commit bf1fbf4Copy full SHA for bf1fbf4
requirements.txt
@@ -1,3 +1,3 @@
1
sqlalchemy >= 1.4.0, < 3.0.0
2
ydb >= 3.18.8
3
-ydb-dbapi >= 0.1.7
+ydb-dbapi >= 0.1.8
ydb_sqlalchemy/sqlalchemy/dbapi_adapter.py
@@ -87,13 +87,13 @@ def rowcount(self):
87
return self._cursor.rowcount
88
89
def fetchone(self):
90
- return await_only(self._cursor.fetchone())
+ return self._cursor.fetchone()
91
92
def fetchmany(self, size=None):
93
- return await_only(self._cursor.fetchmany(size=size))
+ return self._cursor.fetchmany(size=size)
94
95
def fetchall(self):
96
- return await_only(self._cursor.fetchall())
+ return self._cursor.fetchall()
97
98
def execute_scheme(self, sql, parameters=None):
99
return await_only(self._cursor.execute_scheme(sql, parameters))
0 commit comments