(
cls, *selects: _SelectStatementForCompoundArgument[_TP]
)
| 4595 | |
| 4596 | @classmethod |
| 4597 | def _create_intersect( |
| 4598 | cls, *selects: _SelectStatementForCompoundArgument[_TP] |
| 4599 | ) -> CompoundSelect[_TP]: |
| 4600 | return CompoundSelect(_CompoundSelectKeyword.INTERSECT, *selects) |
| 4601 | |
| 4602 | @classmethod |
| 4603 | def _create_intersect_all( |
no test coverage detected