(
cls, *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]]
)
| 4723 | |
| 4724 | @classmethod |
| 4725 | def _create_intersect_all( |
| 4726 | cls, *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]] |
| 4727 | ) -> CompoundSelect[Unpack[_Ts]]: |
| 4728 | return CompoundSelect(_CompoundSelectKeyword.INTERSECT_ALL, *selects) |
| 4729 | |
| 4730 | def _scalar_type(self) -> TypeEngine[Any]: |
| 4731 | return self.selects[0]._scalar_type() |
no test coverage detected