You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-27 21:01:50 +03:00
Merge branch 'develop-1.1' into 1.1-merge-up-2018-12-20b
This commit is contained in:
@ -59,7 +59,6 @@ namespace bi = boost::interprocess;
|
||||
#include "IDBDataFile.h"
|
||||
#include "IDBPolicy.h"
|
||||
#ifdef BRM_INFO
|
||||
#error BRM_INFO is broken right now
|
||||
#include "tracer.h"
|
||||
#include "configcpp.h"
|
||||
#endif
|
||||
@ -4603,12 +4602,12 @@ void ExtentMap::setLocalHWM(int OID, uint32_t partitionNum,
|
||||
{
|
||||
makeUndoRecord(&fExtentMap[oldHWMExtentIndex], sizeof(EMEntry));
|
||||
fExtentMap[oldHWMExtentIndex].HWM = 0;
|
||||
#ifdef BRM_DEBUG
|
||||
#ifdef BRM_INFO
|
||||
addedAnExtent = true;
|
||||
#endif
|
||||
}
|
||||
|
||||
#ifdef BRM_DEBUG
|
||||
#ifdef BRM_INFO
|
||||
|
||||
if (firstNode)
|
||||
{
|
||||
@ -4921,10 +4920,9 @@ void ExtentMap::deletePartition(const set<OID_t>& oids,
|
||||
TRACER_WRITENOW("deletePartition");
|
||||
ostringstream oss;
|
||||
set<LogicalPartition>::const_iterator partIt;
|
||||
oss << "partitionNums: "
|
||||
|
||||
for (partIt = partitionNums.begin(); it != partitionNums.end(); ++it)
|
||||
oss << (*it) << " ";
|
||||
oss << "partitionNums: ";
|
||||
for (partIt=partitionNums.begin(); partIt!=partitionNums.end(); ++partIt)
|
||||
oss << (*partIt) << " ";
|
||||
|
||||
oss << endl;
|
||||
oss << "OIDS: ";
|
||||
@ -5026,10 +5024,9 @@ void ExtentMap::markPartitionForDeletion(const set<OID_t>& oids,
|
||||
TRACER_WRITENOW("markPartitionForDeletion");
|
||||
ostringstream oss;
|
||||
set<LogicalPartition>::const_iterator partIt;
|
||||
oss << "partitionNums: "
|
||||
|
||||
for (partIt = partitionNums.begin(); it != partitionNums.end(); ++it)
|
||||
oss << (*it) << " ";
|
||||
oss << "partitionNums: ";
|
||||
for (partIt=partitionNums.begin(); partIt!=partitionNums.end(); ++partIt)
|
||||
oss << (*partIt) << " ";
|
||||
|
||||
oss << endl;
|
||||
oss << "OIDS: ";
|
||||
@ -5193,10 +5190,9 @@ void ExtentMap::restorePartition(const set<OID_t>& oids,
|
||||
TRACER_WRITENOW("restorePartition");
|
||||
ostringstream oss;
|
||||
set<LogicalPartition>::const_iterator partIt;
|
||||
oss << "partitionNums: "
|
||||
|
||||
for (partIt = partitionNums.begin(); it != partitionNums.end(); ++it)
|
||||
oss << (*it) << " ";
|
||||
oss << "partitionNums: ";
|
||||
for (partIt=partitionNums.begin(); partIt!=partitionNums.end(); ++partIt)
|
||||
oss << (*partIt) << " ";
|
||||
|
||||
oss << endl;
|
||||
oss << "OIDS: ";
|
||||
@ -5365,7 +5361,7 @@ bool ExtentMap::isDBRootEmpty(uint16_t dbroot)
|
||||
if (fDebug)
|
||||
{
|
||||
TRACER_WRITELATER("isDBRootEmpty");
|
||||
TRACER_ADDINPUT(OID);
|
||||
TRACER_ADDINPUT(dbroot);
|
||||
TRACER_WRITE;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user