(self, connection, table_name, schema=None, **kw)
| 3681 | |
| 3682 | @reflection.cache |
| 3683 | def has_table(self, connection, table_name, schema=None, **kw): |
| 3684 | self._ensure_has_table_connection(connection) |
| 3685 | query = self._has_table_query(schema) |
| 3686 | return bool(connection.scalar(query, {"table_name": table_name})) |
| 3687 | |
| 3688 | @reflection.cache |
| 3689 | def has_sequence(self, connection, sequence_name, schema=None, **kw): |
nothing calls this directly
no test coverage detected