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 619abae commit 65a2da0Copy full SHA for 65a2da0
lib/query-planner/src/planner/fetch/optimize/merge_passthrough_child.rs
@@ -107,12 +107,10 @@ impl FetchStepData<MultiTypeFetchStep> {
107
return false;
108
}
109
110
+ // TODO: Use selection_items_are_subset_of
111
for (def_name, selections) in other.output_new.iter_selections() {
112
if &other.input.type_name == def_name
- && selection_items_are_subset_of(
113
- &other.input.selection_set.items,
114
- &selections.items,
115
- )
+ && other.input.selection_set.items == selections.items
116
{
117
return true;
118
0 commit comments