mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-21 19:45:56 +03:00
86 lines
2.4 KiB
C++
86 lines
2.4 KiB
C++
/* Copyright (C) 2014 InfiniDB, Inc.
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; version 2 of
|
|
the License.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
MA 02110-1301, USA. */
|
|
|
|
/****************************************************************************
|
|
* $Id: func_lcase.cpp 3923 2013-06-19 21:43:06Z bwilkinson $
|
|
*
|
|
*
|
|
****************************************************************************/
|
|
#include <mariadb.h>
|
|
#undef set_bits // mariadb.h defines set_bits, which is incompatible with boost
|
|
#include <my_sys.h>
|
|
#include <m_ctype.h>
|
|
|
|
#include <string>
|
|
using namespace std;
|
|
|
|
#include "functor_str.h"
|
|
#include "functioncolumn.h"
|
|
#include "utils_utf8.h"
|
|
using namespace execplan;
|
|
|
|
#include "rowgroup.h"
|
|
using namespace rowgroup;
|
|
|
|
#include "joblisttypes.h"
|
|
using namespace joblist;
|
|
|
|
class to_lower
|
|
{
|
|
public:
|
|
char operator() (char c) const // notice the return type
|
|
{
|
|
return tolower(c);
|
|
}
|
|
};
|
|
|
|
namespace funcexp
|
|
{
|
|
|
|
CalpontSystemCatalog::ColType Func_lcase::operationType(FunctionParm& fp, CalpontSystemCatalog::ColType& resultType)
|
|
{
|
|
// operation type is not used by this functor
|
|
return fp[0]->data()->resultType();
|
|
}
|
|
|
|
std::string Func_lcase::getStrVal(rowgroup::Row& row,
|
|
FunctionParm& fp,
|
|
bool& isNull,
|
|
execplan::CalpontSystemCatalog::ColType& colType)
|
|
{
|
|
const string& tstr = fp[0]->data()->getStrVal(row, isNull);
|
|
|
|
if (isNull)
|
|
return "";
|
|
|
|
CHARSET_INFO* cs = colType.getCharset();
|
|
uint64_t inLen = tstr.length();
|
|
uint64_t bufLen= inLen * cs->casedn_multiply;
|
|
char* outBuf = new char[bufLen];
|
|
|
|
uint64_t outLen = cs->casedn(tstr.c_str(), inLen, outBuf, bufLen);
|
|
|
|
string ret = string(outBuf, outLen);
|
|
delete [] outBuf;
|
|
return ret;
|
|
}
|
|
|
|
|
|
} // namespace funcexp
|
|
// vim:ts=4 sw=4:
|
|
|