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)
| 5365 | |
| 5366 | @classmethod |
| 5367 | def _create_raw_select(cls, **kw: Any) -> Select[Any]: |
| 5368 | """Create a :class:`.Select` using raw ``__new__`` with no coercions. |
| 5369 | |
| 5370 | Used internally to build up :class:`.Select` constructs with |
| 5371 | pre-established state. |
| 5372 | |
| 5373 | """ |
| 5374 | |
| 5375 | stmt = Select.__new__(Select) |
| 5376 | stmt.__dict__.update(kw) |
| 5377 | return stmt |
| 5378 | |
| 5379 | def __init__( |
| 5380 | self, *entities: _ColumnsClauseArgument[Any], **dialect_kw: Any |
no test coverage detected