1
0
Fork 0

initializeCursor and shutdown methods for ExecutionEngine.

This commit is contained in:
Max Neunhoeffer 2014-09-26 14:50:28 +02:00
parent 5c7d058043
commit 25ee17c075
1 changed files with 16 additions and 0 deletions

View File

@ -106,6 +106,22 @@ namespace triagens {
return _query;
}
////////////////////////////////////////////////////////////////////////////////
/// @brief initializeCursor, could be called multiple times
////////////////////////////////////////////////////////////////////////////////
int initializeCursor (AqlItemBlock* items, size_t pos) {
return _root->initializeCursor(items, pos);
}
////////////////////////////////////////////////////////////////////////////////
/// @brief shutdown, will be called exactly once for the whole query
////////////////////////////////////////////////////////////////////////////////
int shutdown () {
return _root->shutdown();
}
////////////////////////////////////////////////////////////////////////////////
/// @brief getSome
////////////////////////////////////////////////////////////////////////////////