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

Was incrementing the wrong iterator, causing infinite loop.

This commit is contained in:
Patrick LeBlanc
2019-05-16 11:55:43 -05:00
parent 15dbd1eec8
commit cd83b26d6b

View File

@@ -138,7 +138,7 @@ void Synchronizer::flushObject(const string &key)
auto it = pendingOps.find(key);
if (it != pendingOps.end())
// find the object name and call process() to start it right away
for (auto name = objNames.begin(); name != objNames.end(); ++it)
for (auto name = objNames.begin(); name != objNames.end(); ++name)
{
if (*name == key)
{