We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 701c2b3 commit 29da72cCopy full SHA for 29da72c
execution_engine/execution_graph/graph.py
@@ -104,6 +104,10 @@ def traverse(
104
105
traverse(expr, category=category)
106
107
+ # make sure base node has still the correct category - it might have changed duing traversal if the base node
108
+ # is used in an interval_criterion of a TemporalCount operator
109
+ graph.nodes[base_node].update({"category": CohortCategory.BASE})
110
+
111
if hash(expr) != expr_hash:
112
raise ValueError("Expression has been modified during traversal")
113
0 commit comments