MCPcopy Create free account
hub / github.com/sqlalchemy/sqlalchemy / get_view_names

Method get_view_names

lib/sqlalchemy/engine/interfaces.py:1499–1512  ·  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

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

Callers 9

reflectMethod · 0.45
drop_viewsFunction · 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 7

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