Create a :class:`.Select` using raw ``__new__`` with no coercions. Used internally to build up :class:`.Select` constructs with pre-established state.
(cls, **kw: Any)
| 5587 | |
| 5588 | @classmethod |
| 5589 | def _create_raw_select(cls, **kw: Any) -> Select[Unpack[TupleAny]]: |
| 5590 | """Create a :class:`.Select` using raw ``__new__`` with no coercions. |
| 5591 | |
| 5592 | Used internally to build up :class:`.Select` constructs with |
| 5593 | pre-established state. |
| 5594 | |
| 5595 | """ |
| 5596 | |
| 5597 | stmt = Select.__new__(Select) |
| 5598 | stmt.__dict__.update(kw) |
| 5599 | return stmt |
| 5600 | |
| 5601 | def __init__( |
| 5602 | self, *entities: _ColumnsClauseArgument[Any], **dialect_kw: Any |
no test coverage detected