Skip to content

Commit

Permalink
Handle group by metrics where missed
Browse files Browse the repository at this point in the history
  • Loading branch information
courtneyholcomb committed Apr 23, 2024
1 parent 0e6830a commit 1ffc496
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion metricflow/plan_conversion/node_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,10 @@ def _get_candidates_nodes_for_multi_hop(
filtered_joinable_node = FilterElementsNode(
parent_node=second_node_that_could_be_joined,
include_specs=InstanceSpecSet.from_specs(
specs.dimension_specs + specs.entity_specs + specs.time_dimension_specs
specs.dimension_specs
+ specs.entity_specs
+ specs.time_dimension_specs
+ specs.group_by_metric_specs
),
)

Expand Down

0 comments on commit 1ffc496

Please sign in to comment.