(self: Self)
| 66 | return response |
| 67 | |
| 68 | async def __aenter__(self: Self) -> Self: |
| 69 | self._transaction = self.connection.transaction() |
| 70 | await self._transaction.start() |
| 71 | querystring = self.query.querystrings[0] |
| 72 | template, template_args = querystring.compile_string() |
| 73 | |
| 74 | self._cursor = await self.connection.cursor(template, *template_args) |
| 75 | return self |
| 76 | |
| 77 | async def __aexit__(self, exception_type, exception, traceback): |
| 78 | if exception: |
nothing calls this directly
no test coverage detected