(
cls,
statement: Union[Select, FromStatement],
*,
toplevel: bool,
compiler: Optional[SQLCompiler],
**kw: Any,
)
| 453 | |
| 454 | @classmethod |
| 455 | def _create_orm_context( |
| 456 | cls, |
| 457 | statement: Union[Select, FromStatement], |
| 458 | *, |
| 459 | toplevel: bool, |
| 460 | compiler: Optional[SQLCompiler], |
| 461 | **kw: Any, |
| 462 | ) -> ORMCompileState: |
| 463 | raise NotImplementedError() |
| 464 | |
| 465 | def _append_dedupe_col_collection(self, obj, col_collection): |
| 466 | dedupe = self.dedupe_columns |
no outgoing calls