1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-12-12 11:01:17 +03:00

Fixed a bug in the new makespace code. toBeDeleted wasn't being updated

during one of the races fixed a couple commits ago.
This commit is contained in:
Patrick LeBlanc
2019-07-05 11:03:50 -05:00
parent 62c853595f
commit 46265585ed

View File

@@ -548,6 +548,8 @@ void Cache::_makeSpace(size_t size)
thisMuch = 0;
}
}
else
toBeDeleted.erase(it);
}
}