(self, connection: Connection)
| 261 | self.info_cache = {} |
| 262 | |
| 263 | def _init_connection(self, connection: Connection) -> None: |
| 264 | self.bind = connection |
| 265 | self.engine = connection.engine |
| 266 | self._op_context_requires_connect = False |
| 267 | self.dialect = self.engine.dialect |
| 268 | self.info_cache = {} |
| 269 | |
| 270 | def clear_cache(self) -> None: |
| 271 | """reset the cache for this :class:`.Inspector`. |