(
self,
keyword: _CompoundSelectKeyword,
*selects: _SelectStatementForCompoundArgument[Unpack[_Ts]],
)
| 4677 | _auto_correlate = False |
| 4678 | |
| 4679 | def __init__( |
| 4680 | self, |
| 4681 | keyword: _CompoundSelectKeyword, |
| 4682 | *selects: _SelectStatementForCompoundArgument[Unpack[_Ts]], |
| 4683 | ): |
| 4684 | self.keyword = keyword |
| 4685 | self.selects = [ |
| 4686 | coercions.expect( |
| 4687 | roles.CompoundElementRole, s, apply_propagate_attrs=self |
| 4688 | ).self_group(against=self) |
| 4689 | for s in selects |
| 4690 | ] |
| 4691 | |
| 4692 | GenerativeSelect.__init__(self) |
| 4693 | |
| 4694 | @classmethod |
| 4695 | def _create_union( |
nothing calls this directly
no test coverage detected