(
cls, *selects: _SelectStatementForCompoundArgument[_TP]
)
| 4571 | |
| 4572 | @classmethod |
| 4573 | def _create_union( |
| 4574 | cls, *selects: _SelectStatementForCompoundArgument[_TP] |
| 4575 | ) -> CompoundSelect[_TP]: |
| 4576 | return CompoundSelect(_CompoundSelectKeyword.UNION, *selects) |
| 4577 | |
| 4578 | @classmethod |
| 4579 | def _create_union_all( |
no test coverage detected