(self, connection, schema, **kw)
| 3630 | |
| 3631 | @reflection.cache |
| 3632 | def has_schema(self, connection, schema, **kw): |
| 3633 | query = select(pg_catalog.pg_namespace.c.nspname).where( |
| 3634 | pg_catalog.pg_namespace.c.nspname == schema |
| 3635 | ) |
| 3636 | return bool(connection.scalar(query)) |
| 3637 | |
| 3638 | def _pg_class_filter_scope_schema( |
| 3639 | self, query, schema, scope, pg_class_table=None |