(self, connection, table_name, schema=None, **kw)
| 3828 | |
| 3829 | @reflection.cache |
| 3830 | def has_table(self, connection, table_name, schema=None, **kw): |
| 3831 | self._ensure_has_table_connection(connection) |
| 3832 | query = self._has_table_query(schema) |
| 3833 | return bool(connection.scalar(query, {"table_name": table_name})) |
| 3834 | |
| 3835 | @reflection.cache |
| 3836 | def has_sequence(self, connection, sequence_name, schema=None, **kw): |
nothing calls this directly
no test coverage detected