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

Method contains_subquery

tests/comparison/funcs.py:189–193  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

187 signature_arg.validate(self.args[idx], skip_nulls=skip_nulls)
188
189 def contains_subquery(self):
190 for signature_arg in self.signature.args:
191 if signature_arg.is_subquery:
192 return True
193 return any(self.iter_exprs(lambda expr: expr.is_func and expr.contains_subquery))
194
195 def iter_exprs(self, filter=None):
196 '''Returns an iterator over all val_exprs including those nested within this

Callers

nothing calls this directly

Calls 1

iter_exprsMethod · 0.95

Tested by

no test coverage detected