mirror of https://gitee.com/bigwinds/arangodb
fixed cloning of IndexRangeNodes
This commit is contained in:
parent
f053299f9a
commit
ba21bf4019
|
@ -910,6 +910,8 @@ namespace triagens {
|
|||
virtual ExecutionNode* clone () const {
|
||||
std::vector<std::vector<RangeInfo>> ranges;
|
||||
for (size_t i = 0; i < _ranges.size(); i++){
|
||||
ranges.push_back(std::vector<RangeInfo>());
|
||||
|
||||
for (auto x: _ranges.at(i)){
|
||||
ranges.at(i).push_back(x);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue