Return a list of all materialized view names available in the database. This is an internal dialect method. Applications should use :meth:`_engine.Inspector.get_materialized_view_names`. :param schema: schema name to query, if not the default schema. .. ve
(
self, connection: Connection, schema: Optional[str] = None, **kw: Any
)
| 1545 | raise NotImplementedError() |
| 1546 | |
| 1547 | def get_materialized_view_names( |
| 1548 | self, connection: Connection, schema: Optional[str] = None, **kw: Any |
| 1549 | ) -> List[str]: |
| 1550 | """Return a list of all materialized view names available in the |
| 1551 | database. |
| 1552 | |
| 1553 | This is an internal dialect method. Applications should use |
| 1554 | :meth:`_engine.Inspector.get_materialized_view_names`. |
| 1555 | |
| 1556 | :param schema: schema name to query, if not the default schema. |
| 1557 | |
| 1558 | .. versionadded:: 2.0 |
| 1559 | |
| 1560 | """ |
| 1561 | |
| 1562 | raise NotImplementedError() |
| 1563 | |
| 1564 | def get_sequence_names( |
| 1565 | self, connection: Connection, schema: Optional[str] = None, **kw: Any |
no outgoing calls