MCPcopy Create free account
hub / github.com/apache/impala / visible_table_exprs

Method visible_table_exprs

tests/comparison/query.py:466–471  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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):

Callers

nothing calls this directly

Calls 1

TableExprListClass · 0.90

Tested by

no test coverage detected