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 15bf03d commit 79049e5Copy full SHA for 79049e5
python/tests/test_cursor.py
@@ -11,6 +11,9 @@ async def test_cursor_fetch(
11
) -> None:
12
connection = await psql_pool.connection()
13
transaction = connection.transaction()
14
+ await transaction.begin()
15
await transaction.cursor(
16
querystring=f"SELECT * FROM {table_name}",
17
)
18
+
19
+ await transaction.commit()
0 commit comments