(
cls, *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]]
)
| 4711 | |
| 4712 | @classmethod |
| 4713 | def _create_except_all( |
| 4714 | cls, *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]] |
| 4715 | ) -> CompoundSelect[Unpack[_Ts]]: |
| 4716 | return CompoundSelect(_CompoundSelectKeyword.EXCEPT_ALL, *selects) |
| 4717 | |
| 4718 | @classmethod |
| 4719 | def _create_intersect( |
no test coverage detected