(self, memo)
| 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 |
nothing calls this directly
no test coverage detected