(self)
| 171 | await self.close() |
| 172 | |
| 173 | async def db_delete(self) -> None: |
| 174 | await self.create_connection(with_db=False) |
| 175 | try: |
| 176 | await self.execute_script(f"DROP DATABASE {self.database}") |
| 177 | except errors.DatabaseError: # pragma: nocoverage |
| 178 | pass |
| 179 | await self.close() |
| 180 | |
| 181 | def acquire_connection(self) -> ConnectionWrapper | PoolConnectionWrapper: |
| 182 | return PoolConnectionWrapper(self, self._pool_init_lock) |
nothing calls this directly
no test coverage detected