File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -172,8 +172,8 @@ int IndexBlock::initialize () {
172
172
173
173
for (auto const & v : inVars) {
174
174
inVarsCur.emplace_back (v);
175
- auto it = getPlanNode () ->getRegisterPlan ()->varInfo .find (v->id );
176
- TRI_ASSERT (it != getPlanNode () ->getRegisterPlan ()->varInfo .end ());
175
+ auto it = en ->getRegisterPlan ()->varInfo .find (v->id );
176
+ TRI_ASSERT (it != en ->getRegisterPlan ()->varInfo .end ());
177
177
TRI_ASSERT (it->second .registerId < ExecutionNode::MaxRegisterId);
178
178
inRegsCur.emplace_back (it->second .registerId );
179
179
}
@@ -184,7 +184,7 @@ int IndexBlock::initialize () {
184
184
return TRI_ERROR_NO_ERROR;
185
185
}
186
186
187
- auto outVariable = static_cast <IndexNode const *>( getPlanNode ()) ->outVariable ();
187
+ auto outVariable = en ->outVariable ();
188
188
189
189
for (size_t i = 0 ; i < _condition->numMembers (); ++i) {
190
190
auto andCond = _condition->getMemberUnchecked (i);
You can’t perform that action at this time.
0 commit comments