(
self, against: Optional[OperatorType] = None
)
| 4731 | return self.selects[0]._scalar_type() |
| 4732 | |
| 4733 | def self_group( |
| 4734 | self, against: Optional[OperatorType] = None |
| 4735 | ) -> GroupedElement: |
| 4736 | return SelectStatementGrouping(self) |
| 4737 | |
| 4738 | def is_derived_from(self, fromclause: Optional[FromClause]) -> bool: |
| 4739 | for s in self.selects: |
nothing calls this directly
no test coverage detected