Return the displayed list of :class:`_expression.FromClause` elements.
(self)
| 6055 | "the :meth:`_expression.Select.get_final_froms` method.", |
| 6056 | ) |
| 6057 | def froms(self) -> Sequence[FromClause]: |
| 6058 | """Return the displayed list of :class:`_expression.FromClause` |
| 6059 | elements. |
| 6060 | |
| 6061 | |
| 6062 | """ |
| 6063 | return self.get_final_froms() |
| 6064 | |
| 6065 | @property |
| 6066 | def columns_clause_froms(self) -> List[FromClause]: |
nothing calls this directly
no test coverage detected