(self, conn)
| 54 | self.loop.run_until_complete(self._add_custom_codec(self.con)) |
| 55 | |
| 56 | async def _add_custom_codec(self, conn): |
| 57 | # mess up with the codec - builtin introspection shouldn't be affected |
| 58 | await conn.set_type_codec( |
| 59 | "oid", |
| 60 | schema="pg_catalog", |
| 61 | encoder=lambda value: None, |
| 62 | decoder=lambda value: None, |
| 63 | format="text", |
| 64 | ) |
| 65 | |
| 66 | @tb.with_connection_options(database='asyncpg_intro_test') |
| 67 | async def test_introspection_on_large_db(self): |
no test coverage detected