You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-30 19:23:07 +03:00
A test to investigate problems, without expected results
Debug logs Debug logs - fix typo Debug logs Debug logs debug logs debug logs debug logs debug logs debug logs debug logs debug logs debug logs Solution to test Remove debug logs
This commit is contained in:
@ -314,6 +314,7 @@ void BRMReporter::sendCPToFile( )
|
||||
fCPInfo[i].min << ' ' <<
|
||||
fCPInfo[i].seqNum << ' ' <<
|
||||
fCPInfo[i].type << ' ' <<
|
||||
fCPInfo[i].colWidth << ' ' <<
|
||||
fCPInfo[i].newExtent << std::endl;
|
||||
}
|
||||
else
|
||||
@ -412,13 +413,13 @@ int BRMReporter::openRptFile( )
|
||||
return rc;
|
||||
}
|
||||
|
||||
fRptFile << "#CP: startLBID max min seqnum type newExtent" << std::endl;
|
||||
fRptFile << "#HWM: oid partition segment hwm" << std::endl;
|
||||
fRptFile << "#ROWS: numRowsRead numRowsInserted" << std::endl;
|
||||
fRptFile << "#CP: startLBID max min seqnum type colwidth newExtent" << std::endl;
|
||||
fRptFile << "#HWM: oid partition segment hwm" << std::endl;
|
||||
fRptFile << "#ROWS: numRowsRead numRowsInserted" << std::endl;
|
||||
fRptFile << "#DATA: columNum columnType columnOid numOutOfRangeValues" << std::endl;
|
||||
fRptFile << "#ERR: error message file" << std::endl;
|
||||
fRptFile << "#BAD: bad data file, with rejected rows" << std::endl;
|
||||
fRptFile << "#MERR: critical error messages in cpimport.bin" << std::endl;
|
||||
fRptFile << "#ERR: error message file" << std::endl;
|
||||
fRptFile << "#BAD: bad data file, with rejected rows" << std::endl;
|
||||
fRptFile << "#MERR: critical error messages in cpimport.bin" << std::endl;
|
||||
|
||||
return NO_ERROR;
|
||||
}
|
||||
|
@ -353,6 +353,15 @@ bool WEBrmUpdater::prepareCasualPartitionInfo()
|
||||
|
||||
pTok = strtok(NULL, " ");
|
||||
|
||||
if (pTok)
|
||||
cpInfoMerge.colWidth = boost::lexical_cast<int32_t>(pTok);
|
||||
else
|
||||
{
|
||||
//cout << "CP Entry : " << aEntry << endl;
|
||||
throw (runtime_error("Bad column width in CP entry string"));
|
||||
}
|
||||
pTok = strtok(NULL, " ");
|
||||
|
||||
if (pTok)
|
||||
cpInfoMerge.newExtent = (atoi(pTok) != 0);
|
||||
else
|
||||
|
Reference in New Issue
Block a user