1
0
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:
Sergey Zefirov
2021-03-22 11:53:15 +03:00
parent 2f2a2d81b6
commit de8ef1eb2d
2 changed files with 16 additions and 6 deletions

View File

@ -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