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
MCOL-1559 Some string trailing blank stuff
This commit is contained in:
@ -30,6 +30,7 @@
|
||||
|
||||
#include <unistd.h>
|
||||
#include <algorithm>
|
||||
#include <boost/algorithm/string/trim.hpp>
|
||||
|
||||
#include "bpp.h"
|
||||
#include "primitiveserver.h"
|
||||
@ -93,6 +94,7 @@ void DictStep::createCommand(ByteStream& bs)
|
||||
for (uint32_t i = 0; i < filterCount; i++)
|
||||
{
|
||||
bs >> strTmp;
|
||||
boost::trim_right_if(strTmp, boost::is_any_of(" "));
|
||||
//cout << " " << strTmp << endl;
|
||||
eqFilter->insert(strTmp);
|
||||
}
|
||||
|
Reference in New Issue
Block a user