MCPcopy
hub / github.com/sqlalchemy/sqlalchemy / _create_orm_context

Method _create_orm_context

lib/sqlalchemy/orm/context.py:469–477  ·  view source on GitHub ↗
(
        cls,
        statement: Union[Select, FromStatement],
        *,
        toplevel: bool,
        compiler: Optional[SQLCompiler],
        **kw: Any,
    )

Source from the content-addressed store, hash-verified

467
468 @classmethod
469 def _create_orm_context(
470 cls,
471 statement: Union[Select, FromStatement],
472 *,
473 toplevel: bool,
474 compiler: Optional[SQLCompiler],
475 **kw: Any,
476 ) -> _ORMCompileState:
477 raise NotImplementedError()
478
479 def _append_dedupe_col_collection(self, obj, col_collection):
480 dedupe = self.dedupe_columns

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by 2

test_no_uniquing_colsMethod · 0.36