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

Method __init__

lib/sqlalchemy/sql/selectable.py:3580–3589  ·  view source on GitHub ↗
(
        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

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected