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

Method table_exprs

tests/comparison/query.py:443–450  ·  view source on GitHub ↗

Provides a list of all table_exprs that are declared within this FROM block.

(self)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

TableExprListClass · 0.90
appendMethod · 0.45

Tested by

no test coverage detected