(self)
| 6831 | return list(meth(self)) |
| 6832 | |
| 6833 | def _ensure_disambiguated_names(self) -> Select[Unpack[TupleAny]]: |
| 6834 | if self._label_style is LABEL_STYLE_NONE: |
| 6835 | self = self.set_label_style(LABEL_STYLE_DISAMBIGUATE_ONLY) |
| 6836 | return self |
| 6837 | |
| 6838 | def _generate_fromclause_column_proxies( |
| 6839 | self, |
no test coverage detected