(
cls, *selects: _SelectStatementForCompoundArgument[_TP]
)
| 4577 | |
| 4578 | @classmethod |
| 4579 | def _create_union_all( |
| 4580 | cls, *selects: _SelectStatementForCompoundArgument[_TP] |
| 4581 | ) -> CompoundSelect[_TP]: |
| 4582 | return CompoundSelect(_CompoundSelectKeyword.UNION_ALL, *selects) |
| 4583 | |
| 4584 | @classmethod |
| 4585 | def _create_except( |
no test coverage detected