You've already forked mariadb-columnstore-engine
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:
@@ -138,7 +138,7 @@ void Synchronizer::flushObject(const string &key)
|
|||||||
auto it = pendingOps.find(key);
|
auto it = pendingOps.find(key);
|
||||||
if (it != pendingOps.end())
|
if (it != pendingOps.end())
|
||||||
// find the object name and call process() to start it right away
|
// 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)
|
if (*name == key)
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user