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

MCOL-5021 Add support for the AUX column in TRUNCATE table processing.

This commit is contained in:
Gagan Goel
2022-06-08 13:35:07 -04:00
parent ea1861fdb5
commit 439db48c5a
2 changed files with 12 additions and 0 deletions

View File

@ -5843,6 +5843,10 @@ void CalpontSystemCatalog::flushCache()
buildSysTablemap();
lk3.unlock();
boost::mutex::scoped_lock namemaplk(fTableNameMapLock);
fTableNameMap.clear();
namemaplk.unlock();
boost::mutex::scoped_lock auxlk(fTableAUXColumnOIDMapLock);
fTableAUXColumnOIDMap.clear();
auxlk.unlock();