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

Class HavingClause

tests/comparison/query.py:631–641  ·  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

629
630
631class HavingClause(object):
632 '''The member variable boolean_expr will be an instance of a boolean func
633 defined below.
634
635 '''
636
637 def __init__(self, boolean_expr):
638 self.boolean_expr = boolean_expr
639
640 def __deepcopy__(self, memo):
641 return HavingClause(deepcopy(self.boolean_expr, memo))
642
643
644class UnionClause(object):

Callers 2

_create_having_clauseMethod · 0.90
__deepcopy__Method · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected