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

Class WhereClause

tests/comparison/query.py:609–619  ·  view source on GitHub ↗

The member variable boolean_expr will be an instance of a boolean func defined below.

Source from the content-addressed store, hash-verified

607
608
609class WhereClause(object):
610 '''The member variable boolean_expr will be an instance of a boolean func
611 defined below.
612
613 '''
614
615 def __init__(self, boolean_expr):
616 self.boolean_expr = boolean_expr
617
618 def __deepcopy__(self, memo):
619 return WhereClause(deepcopy(self.boolean_expr, memo))
620
621
622class GroupByClause(object):

Callers 5

flatten_join_clauseMethod · 0.90
flatten_from_clauseMethod · 0.90
_create_where_clauseMethod · 0.90
__deepcopy__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected