(
cls, *selects: _SelectStatementForCompoundArgument[_TP]
)
| 4583 | |
| 4584 | @classmethod |
| 4585 | def _create_except( |
| 4586 | cls, *selects: _SelectStatementForCompoundArgument[_TP] |
| 4587 | ) -> CompoundSelect[_TP]: |
| 4588 | return CompoundSelect(_CompoundSelectKeyword.EXCEPT, *selects) |
| 4589 | |
| 4590 | @classmethod |
| 4591 | def _create_except_all( |
no test coverage detected