Method
__init__
(
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
Tested by
no test coverage detected