Method
__init__
(
self,
columns: Sequence[NamedColumn[Any]],
data: Tuple[Sequence[Tuple[Any, ...]], ...],
literal_binds: bool,
)
Source from the content-addressed store, hash-verified
| 3502 | ] |
| 3503 | |
| 3504 | def __init__( |
| 3505 | self, |
| 3506 | columns: Sequence[NamedColumn[Any]], |
| 3507 | data: Tuple[Sequence[Tuple[Any, ...]], ...], |
| 3508 | literal_binds: bool, |
| 3509 | ): |
| 3510 | super().__init__() |
| 3511 | self._column_args = columns |
| 3512 | self._data = data |
| 3513 | self.literal_binds = literal_binds |
| 3514 | |
| 3515 | @property |
| 3516 | def _column_types(self) -> List[TypeEngine[Any]]: |
Callers
nothing calls this directly
Tested by
no test coverage detected