(self, child)
| 2023 | ) |
| 2024 | |
| 2025 | def _check_for_previously_created_column(self, child): |
| 2026 | input_columns = [] |
| 2027 | for v in self.vals: |
| 2028 | if isinstance(v, Expr): |
| 2029 | input_columns.extend(v.columns) |
| 2030 | return bool(set(input_columns) & set(child.keys)) |
| 2031 | |
| 2032 | def _simplify_up(self, parent, dependents): |
| 2033 | if isinstance(parent, Projection): |