Provides a list of all table_exprs that are declared within this FROM block and may be referenced in other clauses such as SELECT or WHERE.
(self)
| 464 | |
| 465 | @property |
| 466 | def visible_table_exprs(self): |
| 467 | '''Provides a list of all table_exprs that are declared within this FROM |
| 468 | block and may be referenced in other clauses such as SELECT or WHERE. |
| 469 | ''' |
| 470 | return TableExprList(table_expr for table_expr in self.table_exprs |
| 471 | if table_expr.is_visible) |
| 472 | |
| 473 | @property |
| 474 | def has_non_standard_joins(self): |
nothing calls this directly
no test coverage detected