1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-513 Use vector ref for join to prevent vector copy.

This commit is contained in:
David Hall
2017-02-20 11:45:29 -06:00
parent def06be564
commit 88a372c671

View File

@ -134,7 +134,7 @@ void ThreadPool::join(uint64_t thrHandle)
}
}
void ThreadPool::join(std::vector<uint64_t> thrHandle)
void ThreadPool::join(std::vector<uint64_t>& thrHandle)
{
boost::mutex::scoped_lock lock1(fMutex);