(
cls, *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]]
)
| 4693 | |
| 4694 | @classmethod |
| 4695 | def _create_union( |
| 4696 | cls, *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]] |
| 4697 | ) -> CompoundSelect[Unpack[_Ts]]: |
| 4698 | return CompoundSelect(_CompoundSelectKeyword.UNION, *selects) |
| 4699 | |
| 4700 | @classmethod |
| 4701 | def _create_union_all( |
no test coverage detected