Return a list of all non-materialized view names available in the database. This is an internal dialect method. Applications should use :meth:`_engine.Inspector.get_view_names`. :param schema: schema name to query, if not the default schema.
(
self, connection: Connection, schema: Optional[str] = None, **kw: Any
)
| 1530 | raise NotImplementedError() |
| 1531 | |
| 1532 | def get_view_names( |
| 1533 | self, connection: Connection, schema: Optional[str] = None, **kw: Any |
| 1534 | ) -> List[str]: |
| 1535 | """Return a list of all non-materialized view names available in the |
| 1536 | database. |
| 1537 | |
| 1538 | This is an internal dialect method. Applications should use |
| 1539 | :meth:`_engine.Inspector.get_view_names`. |
| 1540 | |
| 1541 | :param schema: schema name to query, if not the default schema. |
| 1542 | |
| 1543 | """ |
| 1544 | |
| 1545 | raise NotImplementedError() |
| 1546 | |
| 1547 | def get_materialized_view_names( |
| 1548 | self, connection: Connection, schema: Optional[str] = None, **kw: Any |
no outgoing calls