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
)
| 1497 | raise NotImplementedError() |
| 1498 | |
| 1499 | def get_view_names( |
| 1500 | self, connection: Connection, schema: Optional[str] = None, **kw: Any |
| 1501 | ) -> List[str]: |
| 1502 | """Return a list of all non-materialized view names available in the |
| 1503 | database. |
| 1504 | |
| 1505 | This is an internal dialect method. Applications should use |
| 1506 | :meth:`_engine.Inspector.get_view_names`. |
| 1507 | |
| 1508 | :param schema: schema name to query, if not the default schema. |
| 1509 | |
| 1510 | """ |
| 1511 | |
| 1512 | raise NotImplementedError() |
| 1513 | |
| 1514 | def get_materialized_view_names( |
| 1515 | self, connection: Connection, schema: Optional[str] = None, **kw: Any |
no outgoing calls