(
cls,
statement: Union[Select, FromStatement],
*,
toplevel: bool,
compiler: Optional[SQLCompiler],
**kw: Any,
)
| 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 |
nothing calls this directly
no outgoing calls