(self)
| 431 | |
| 432 | @property |
| 433 | def _all_selected_columns(self) -> Sequence[KeyedColumnElement[Any]]: |
| 434 | if is_table_value_type(self.type): |
| 435 | # TODO: this might not be fully accurate |
| 436 | cols = cast( |
| 437 | "Sequence[KeyedColumnElement[Any]]", self.type._elements |
| 438 | ) |
| 439 | else: |
| 440 | cols = [self.label(None)] |
| 441 | |
| 442 | return cols |
| 443 | |
| 444 | @property |
| 445 | def exported_columns( # type: ignore[override] |
nothing calls this directly
no test coverage detected