You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-08-01 06:46:55 +03:00
Merge branch 'develop-1.1' into 1.1-merge-up-2018-10-05
This commit is contained in:
@ -736,6 +736,17 @@ int TableInfo::setParseComplete(const int& columnId,
|
||||
#ifdef PROFILE
|
||||
Stats::startParseEvent(WE_STATS_FLUSH_PRIMPROC_BLOCKS);
|
||||
#endif
|
||||
if (fLog->isDebug(DEBUG_2))
|
||||
{
|
||||
ostringstream oss;
|
||||
oss << "Dictionary cache flush: ";
|
||||
for (uint32_t i = 0; i < fDictFlushBlks.size(); i++)
|
||||
{
|
||||
oss << fDictFlushBlks[i] << ", ";
|
||||
}
|
||||
oss << endl;
|
||||
fLog->logMsg( oss.str(), MSGLVL_INFO1 );
|
||||
}
|
||||
cacheutils::flushPrimProcAllverBlocks(fDictFlushBlks);
|
||||
#ifdef PROFILE
|
||||
Stats::stopParseEvent(WE_STATS_FLUSH_PRIMPROC_BLOCKS);
|
||||
|
Reference in New Issue
Block a user