(
cls, *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]]
)
| 4699 | |
| 4700 | @classmethod |
| 4701 | def _create_union_all( |
| 4702 | cls, *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]] |
| 4703 | ) -> CompoundSelect[Unpack[_Ts]]: |
| 4704 | return CompoundSelect(_CompoundSelectKeyword.UNION_ALL, *selects) |
| 4705 | |
| 4706 | @classmethod |
| 4707 | def _create_except( |
no test coverage detected