Skip to content

Commit

Permalink
don't traverse that deep
Browse files Browse the repository at this point in the history
  • Loading branch information
mariusandra committed Apr 26, 2024
1 parent 041287a commit c905aca
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion posthog/hogql/transforms/lazy_tables.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ def visit_field_type(self, node: ast.FieldType):
visited_count = self.visited_field_type_counts.get(node_ref, 0)
if visited_count < self.max_type_visits:
self.visited_field_type_counts[node_ref] = visited_count + 1
self.visit(node.table_type)


class LazyTableResolver(TraversingVisitor):
Expand Down

0 comments on commit c905aca

Please sign in to comment.