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

Method __deepcopy__

tests/comparison/query.py:216–219  ·  view source on GitHub ↗
(self, memo)

Source from the content-addressed store, hash-verified

214 return any(item.type.is_approximate() for item in self.items)
215
216 def __deepcopy__(self, memo):
217 other = SelectClause([deepcopy(item, memo) for item in self.items])
218 other.distinct = self.distinct
219 return other
220
221
222# This is used in the query simplifier (not yet checked in) to simplify reduction

Callers

nothing calls this directly

Calls 1

SelectClauseClass · 0.85

Tested by

no test coverage detected