(self)
| 155 | await st.cursor(prefetch=10) |
| 156 | |
| 157 | async def test_cursor_04(self): |
| 158 | async with self.con.transaction(): |
| 159 | st = await self.con.cursor('SELECT generate_series(0, 100)') |
| 160 | await st.forward(42) |
| 161 | self.assertEqual(await st.fetchrow(), (42,)) |
nothing calls this directly
no test coverage detected