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.
QueryGraph
1 parent e9291cf commit 1b61c8fCopy full SHA for 1b61c8f
include/mutable/IR/QueryGraph.hpp
@@ -196,12 +196,16 @@ struct M_EXPORT QueryGraph
196
public:
197
friend void swap(QueryGraph &first, QueryGraph &second) {
198
using std::swap;
199
- swap(first.sources_, second.sources_);
200
- swap(first.joins_, second.joins_);
201
- swap(first.group_by_, second.group_by_);
202
- swap(first.projections_, second.projections_);
203
- swap(first.order_by_, second.order_by_);
204
- swap(first.limit_, second.limit_);
+ swap(first.sources_, second.sources_);
+ swap(first.joins_, second.joins_);
+ swap(first.group_by_, second.group_by_);
+ swap(first.aggregates_, second.aggregates_);
+ swap(first.projections_, second.projections_);
+ swap(first.order_by_, second.order_by_);
205
+ swap(first.limit_, second.limit_);
206
+ swap(first.adjacency_matrix_, second.adjacency_matrix_);
207
+ swap(first.t_, second.t_);
208
+ swap(first.custom_filter_exprs_, second.custom_filter_exprs_);
209
}
210
211
QueryGraph();
0 commit comments