Provides a list of all table_exprs that are declared within this FROM block.
(self)
| 441 | |
| 442 | @property |
| 443 | def table_exprs(self): |
| 444 | '''Provides a list of all table_exprs that are declared within this FROM |
| 445 | block. |
| 446 | ''' |
| 447 | table_exprs = \ |
| 448 | TableExprList(join_clause.table_expr for join_clause in self.join_clauses) |
| 449 | table_exprs.append(self.table_expr) |
| 450 | return table_exprs |
| 451 | |
| 452 | def __deepcopy__(self, memo): |
| 453 | other = FromClause(deepcopy(self.table_expr, memo)) |
nothing calls this directly
no test coverage detected