Method
__init__
(
self,
columns: Sequence[NamedColumn[Any]],
data: Tuple[Sequence[Tuple[Any, ...]], ...],
literal_binds: bool,
)
Source from the content-addressed store, hash-verified
| 3578 | ] |
| 3579 | |
| 3580 | def __init__( |
| 3581 | self, |
| 3582 | columns: Sequence[NamedColumn[Any]], |
| 3583 | data: Tuple[Sequence[Tuple[Any, ...]], ...], |
| 3584 | literal_binds: bool, |
| 3585 | ): |
| 3586 | super().__init__() |
| 3587 | self._column_args = columns |
| 3588 | self._data = data |
| 3589 | self.literal_binds = literal_binds |
| 3590 | |
| 3591 | @property |
| 3592 | def _column_types(self) -> List[TypeEngine[Any]]: |
Callers
nothing calls this directly
Tested by
no test coverage detected