@@ -56,8 +56,9 @@ class TransitivePathTest
56
56
auto [T, qec] = makePath (std::move (input), vars, std::move (left),
57
57
std::move (right), minDist, maxDist);
58
58
auto leftOp = ad_utility::makeExecutionTree<ValuesForTesting>(
59
- qec, std::move (sideTable), sideVars, false , std::vector<ColumnIndex>{},
60
- LocalVocab{}, std::nullopt, forceFullyMaterialized);
59
+ qec, std::move (sideTable), sideVars, false ,
60
+ std::vector<ColumnIndex>{sideTableCol}, LocalVocab{}, std::nullopt,
61
+ forceFullyMaterialized);
61
62
return T->bindLeftSide (leftOp, sideTableCol);
62
63
}
63
64
@@ -68,7 +69,8 @@ class TransitivePathTest
68
69
auto [T, qec] = makePath (std::move (input), vars, std::move (left),
69
70
std::move (right), minDist, maxDist);
70
71
auto leftOp = ad_utility::makeExecutionTree<ValuesForTesting>(
71
- qec, std::move (sideTables), sideVars);
72
+ qec, std::move (sideTables), sideVars, false ,
73
+ std::vector<ColumnIndex>{sideTableCol});
72
74
return T->bindLeftSide (leftOp, sideTableCol);
73
75
}
74
76
@@ -79,8 +81,9 @@ class TransitivePathTest
79
81
auto [T, qec] = makePath (std::move (input), vars, std::move (left),
80
82
std::move (right), minDist, maxDist);
81
83
auto rightOp = ad_utility::makeExecutionTree<ValuesForTesting>(
82
- qec, std::move (sideTable), sideVars, false , std::vector<ColumnIndex>{},
83
- LocalVocab{}, std::nullopt, forceFullyMaterialized);
84
+ qec, std::move (sideTable), sideVars, false ,
85
+ std::vector<ColumnIndex>{sideTableCol}, LocalVocab{}, std::nullopt,
86
+ forceFullyMaterialized);
84
87
return T->bindRightSide (rightOp, sideTableCol);
85
88
}
86
89
@@ -91,7 +94,8 @@ class TransitivePathTest
91
94
auto [T, qec] = makePath (std::move (input), vars, std::move (left),
92
95
std::move (right), minDist, maxDist);
93
96
auto rightOp = ad_utility::makeExecutionTree<ValuesForTesting>(
94
- qec, std::move (sideTables), sideVars);
97
+ qec, std::move (sideTables), sideVars, false ,
98
+ std::vector<ColumnIndex>{sideTableCol});
95
99
return T->bindRightSide (rightOp, sideTableCol);
96
100
}
97
101
0 commit comments