1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-08-05 16:15:50 +03:00

MCOL-3645 - Make ExeMgr destroy joblists in a different thread

Removed a debugging printout.
This commit is contained in:
Patrick LeBlanc
2019-12-03 12:14:54 -05:00
parent 8812cceccf
commit 222f963ed7

View File

@@ -1195,7 +1195,6 @@ new_plan:
std::unique_lock<std::mutex> scoped(jlMutex); std::unique_lock<std::mutex> scoped(jlMutex);
while (destructing > 0) while (destructing > 0)
jlCleanupDone.wait(scoped); jlCleanupDone.wait(scoped);
std::cout << "session thread exiting" << std::endl;
} }
}; };