(self, connection, tablename, dbname, owner, schema, **kw)
| 3375 | |
| 3376 | @_db_plus_owner |
| 3377 | def has_table(self, connection, tablename, dbname, owner, schema, **kw): |
| 3378 | self._ensure_has_table_connection(connection) |
| 3379 | |
| 3380 | return self._internal_has_table(connection, tablename, owner, **kw) |
| 3381 | |
| 3382 | @reflection.cache |
| 3383 | @_db_plus_owner |
nothing calls this directly
no test coverage detected