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

left out %s in logging message

This commit is contained in:
benthompson15
2019-10-17 15:02:33 -05:00
parent ab614da63c
commit 044ed75176

View File

@ -361,7 +361,7 @@ void PrefixCache::newObject(const string &key, size_t size)
{ {
//This should never happen but was in MCOL-3499 //This should never happen but was in MCOL-3499
//Remove this when PrefixCache ctor can call populate() synchronous with write calls //Remove this when PrefixCache ctor can call populate() synchronous with write calls
logger->log(LOG_ERR, "PrefixCache::newObject(): key exists in m_lru already.",key.c_str()); logger->log(LOG_ERR, "PrefixCache::newObject(): key exists in m_lru already %s",key.c_str());
} }
//_makeSpace(size); //_makeSpace(size);
lru.push_back(key); lru.push_back(key);