MCPcopy Create free account
hub / github.com/zzzeek/sqlalchemy / get_materialized_view_names

Method get_materialized_view_names

lib/sqlalchemy/engine/interfaces.py:1547–1562  ·  view source on GitHub ↗

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
    )

Source from the content-addressed store, hash-verified

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

Callers 8

reflectMethod · 0.45
drop_materialized_viewsFunction · 0.45
test_get_view_namesMethod · 0.45
test_metadataMethod · 0.45
test_get_namesMethod · 0.45

Calls

no outgoing calls