MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / get_temp_view_names

Method get_temp_view_names

lib/sqlalchemy/engine/reflection.py:648–662  ·  view source on GitHub ↗

r"""Return a list of temporary view names for the current bind. This method is unsupported by most dialects; currently only PostgreSQL and SQLite implements it. :param \**kw: Additional keyword argument to pass to the dialect specific implementation. See the docume

(self, **kw: Any)

Source from the content-addressed store, hash-verified

646 )
647
648 def get_temp_view_names(self, **kw: Any) -> List[str]:
649 r"""Return a list of temporary view names for the current bind.
650
651 This method is unsupported by most dialects; currently
652 only PostgreSQL and SQLite implements it.
653
654 :param \**kw: Additional keyword argument to pass to the dialect
655 specific implementation. See the documentation of the dialect
656 in use for more information.
657
658 """
659 with self._operation_context() as conn:
660 return self.dialect.get_temp_view_names(
661 conn, info_cache=self.info_cache, **kw
662 )
663
664 def get_table_options(
665 self, table_name: str, schema: Optional[str] = None, **kw: Any

Callers

nothing calls this directly

Calls 1

_operation_contextMethod · 0.95

Tested by

no test coverage detected