1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2025-07-29 08:21:15 +03:00

MCOL-455: fix crash caused by rewind of unopened redistribute plan file during display when no partitions have been planned to be moved.

This commit is contained in:
David Hall
2017-01-20 10:10:24 -06:00
parent 9675af5407
commit a48174de23

View File

@ -501,7 +501,7 @@ void RedistributeControlThread::displayPlan()
if (!fControl->fPlanFilePtr)
{
ostringstream oss;
oss << "No data is scheduled to be moved" << endl;
oss << "No data is schefuled to be moved" << endl;
fControl->logMessage(oss.str());
return;
}