MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / get_view_names

Method get_view_names

lib/sqlalchemy/engine/interfaces.py:1532–1545  ·  view source on GitHub ↗

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
    )

Source from the content-addressed store, hash-verified

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

Callers 12

reflectMethod · 0.45
drop_viewsFunction · 0.45
test_with_metadataMethod · 0.45
test_get_view_namesMethod · 0.45
test_metadataMethod · 0.45
test_get_view_namesMethod · 0.45
test_get_namesMethod · 0.45
test_system_viewsMethod · 0.45
test_get_view_namesMethod · 0.45

Calls

no outgoing calls

Tested by 10

test_with_metadataMethod · 0.36
test_get_view_namesMethod · 0.36
test_metadataMethod · 0.36
test_get_view_namesMethod · 0.36
test_get_namesMethod · 0.36
test_system_viewsMethod · 0.36
test_get_view_namesMethod · 0.36