1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-30 19:23:07 +03:00

MCOL-3395 Always clear dctnry cache on close

The dictionary cache needs to be cleared every time it is closed so that
on bulk insert we don't mix the cache between columns.
This commit is contained in:
Andrew Hutchings
2019-07-03 08:46:43 +01:00
parent 97243ccf52
commit 6bee5f9f61

View File

@ -419,8 +419,7 @@ int Dctnry::closeDctnry(bool realClose)
return rc;
//cout <<"Init called! m_dctnryOID =" << m_dctnryOID << endl;
if (realClose)
freeStringCache( );
freeStringCache( );
return NO_ERROR;
}