1
0
Fork 0

fixed cloning of IndexRangeNodes

This commit is contained in:
Jan Steemann 2014-09-10 10:54:32 +02:00
parent f053299f9a
commit ba21bf4019
1 changed files with 2 additions and 0 deletions

View File

@ -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);
}