(
cls, *selects: _SelectStatementForCompoundArgument[_TP]
)
| 4589 | |
| 4590 | @classmethod |
| 4591 | def _create_except_all( |
| 4592 | cls, *selects: _SelectStatementForCompoundArgument[_TP] |
| 4593 | ) -> CompoundSelect[_TP]: |
| 4594 | return CompoundSelect(_CompoundSelectKeyword.EXCEPT_ALL, *selects) |
| 4595 | |
| 4596 | @classmethod |
| 4597 | def _create_intersect( |
no test coverage detected