MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / __init__

Method __init__

lib/sqlalchemy/sql/ddl.py:911–919  ·  view source on GitHub ↗
(
        self,
        element: Table,
        *,
        if_exists: bool = False,
        materialized: bool = False,
    )

Source from the content-addressed store, hash-verified

909 """Boolean flag indicating if this is a materialized view."""
910
911 def __init__(
912 self,
913 element: Table,
914 *,
915 if_exists: bool = False,
916 materialized: bool = False,
917 ) -> None:
918 super().__init__(element, if_exists=if_exists)
919 self.materialized = materialized
920
921 def to_metadata(self, metadata: MetaData, table: Table) -> Self:
922 new = self.__class__.__new__(self.__class__)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected