You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
clang format apply
This commit is contained in:
@ -16,10 +16,10 @@
|
||||
MA 02110-1301, USA. */
|
||||
|
||||
/****************************************************************************
|
||||
* $Id: func_char.cpp 3931 2013-06-21 20:17:28Z bwilkinson $
|
||||
*
|
||||
*
|
||||
****************************************************************************/
|
||||
* $Id: func_char.cpp 3931 2013-06-21 20:17:28Z bwilkinson $
|
||||
*
|
||||
*
|
||||
****************************************************************************/
|
||||
|
||||
#include <cstdlib>
|
||||
#include <string>
|
||||
@ -38,148 +38,144 @@ using namespace rowgroup;
|
||||
#include "errorids.h"
|
||||
using namespace logging;
|
||||
|
||||
#include <myisampack.h> // min_intXstore()
|
||||
#include <myisampack.h> // min_intXstore()
|
||||
|
||||
#include "vlarray.h"
|
||||
|
||||
namespace
|
||||
{
|
||||
|
||||
inline size_t getChar(int32_t num, char*& buf)
|
||||
{
|
||||
char tmp[4];
|
||||
size_t numBytes = 0;
|
||||
if (num & 0xFF000000L)
|
||||
{
|
||||
mi_int4store(tmp, num);
|
||||
numBytes = 4;
|
||||
}
|
||||
else if (num & 0xFF0000L)
|
||||
{
|
||||
mi_int3store(tmp, num);
|
||||
numBytes = 3;
|
||||
}
|
||||
else if (num & 0xFF00L)
|
||||
{
|
||||
mi_int2store(tmp, num);
|
||||
numBytes = 2;
|
||||
}
|
||||
else
|
||||
{
|
||||
*((int8_t*)buf) = num;
|
||||
++ buf;
|
||||
return 1;
|
||||
}
|
||||
memcpy(buf, tmp, numBytes);
|
||||
buf += numBytes;
|
||||
return numBytes;
|
||||
char tmp[4];
|
||||
size_t numBytes = 0;
|
||||
if (num & 0xFF000000L)
|
||||
{
|
||||
mi_int4store(tmp, num);
|
||||
numBytes = 4;
|
||||
}
|
||||
else if (num & 0xFF0000L)
|
||||
{
|
||||
mi_int3store(tmp, num);
|
||||
numBytes = 3;
|
||||
}
|
||||
else if (num & 0xFF00L)
|
||||
{
|
||||
mi_int2store(tmp, num);
|
||||
numBytes = 2;
|
||||
}
|
||||
else
|
||||
{
|
||||
*((int8_t*)buf) = num;
|
||||
++buf;
|
||||
return 1;
|
||||
}
|
||||
memcpy(buf, tmp, numBytes);
|
||||
buf += numBytes;
|
||||
return numBytes;
|
||||
}
|
||||
|
||||
}
|
||||
} // namespace
|
||||
|
||||
namespace funcexp
|
||||
{
|
||||
CalpontSystemCatalog::ColType Func_char::operationType(FunctionParm& fp, CalpontSystemCatalog::ColType& resultType)
|
||||
CalpontSystemCatalog::ColType Func_char::operationType(FunctionParm& fp,
|
||||
CalpontSystemCatalog::ColType& resultType)
|
||||
{
|
||||
// operation type is not used by this functor
|
||||
return fp[0]->data()->resultType();
|
||||
// operation type is not used by this functor
|
||||
return fp[0]->data()->resultType();
|
||||
}
|
||||
|
||||
string Func_char::getStrVal(Row& row,
|
||||
FunctionParm& parm,
|
||||
bool& isNull,
|
||||
CalpontSystemCatalog::ColType& ct)
|
||||
string Func_char::getStrVal(Row& row, FunctionParm& parm, bool& isNull, CalpontSystemCatalog::ColType& ct)
|
||||
{
|
||||
const int BUF_SIZE = 4 * parm.size();
|
||||
utils::VLArray<char, 1024> buf(BUF_SIZE);
|
||||
buf[0]= 0;
|
||||
char* pBuf = buf;
|
||||
CHARSET_INFO* cs = ct.getCharset();
|
||||
int32_t value = 0;
|
||||
int32_t numBytes = 0;
|
||||
for (uint32_t i = 0; i < parm.size(); ++i)
|
||||
const int BUF_SIZE = 4 * parm.size();
|
||||
utils::VLArray<char, 1024> buf(BUF_SIZE);
|
||||
buf[0] = 0;
|
||||
char* pBuf = buf;
|
||||
CHARSET_INFO* cs = ct.getCharset();
|
||||
int32_t value = 0;
|
||||
int32_t numBytes = 0;
|
||||
for (uint32_t i = 0; i < parm.size(); ++i)
|
||||
{
|
||||
ReturnedColumn* rc = (ReturnedColumn*)parm[i]->data();
|
||||
|
||||
switch (rc->resultType().colDataType)
|
||||
{
|
||||
ReturnedColumn* rc = (ReturnedColumn*)parm[i]->data();
|
||||
|
||||
switch (rc->resultType().colDataType)
|
||||
{
|
||||
case execplan::CalpontSystemCatalog::BIGINT:
|
||||
case execplan::CalpontSystemCatalog::INT:
|
||||
case execplan::CalpontSystemCatalog::MEDINT:
|
||||
case execplan::CalpontSystemCatalog::TINYINT:
|
||||
case execplan::CalpontSystemCatalog::SMALLINT:
|
||||
case execplan::CalpontSystemCatalog::UBIGINT:
|
||||
case execplan::CalpontSystemCatalog::UINT:
|
||||
case execplan::CalpontSystemCatalog::UMEDINT:
|
||||
case execplan::CalpontSystemCatalog::UTINYINT:
|
||||
case execplan::CalpontSystemCatalog::USMALLINT:
|
||||
{
|
||||
value = rc->getIntVal(row, isNull);
|
||||
}
|
||||
break;
|
||||
case execplan::CalpontSystemCatalog::BIGINT:
|
||||
case execplan::CalpontSystemCatalog::INT:
|
||||
case execplan::CalpontSystemCatalog::MEDINT:
|
||||
case execplan::CalpontSystemCatalog::TINYINT:
|
||||
case execplan::CalpontSystemCatalog::SMALLINT:
|
||||
case execplan::CalpontSystemCatalog::UBIGINT:
|
||||
case execplan::CalpontSystemCatalog::UINT:
|
||||
case execplan::CalpontSystemCatalog::UMEDINT:
|
||||
case execplan::CalpontSystemCatalog::UTINYINT:
|
||||
case execplan::CalpontSystemCatalog::USMALLINT:
|
||||
{
|
||||
value = rc->getIntVal(row, isNull);
|
||||
}
|
||||
break;
|
||||
|
||||
case execplan::CalpontSystemCatalog::VARCHAR: // including CHAR'
|
||||
case execplan::CalpontSystemCatalog::CHAR:
|
||||
case execplan::CalpontSystemCatalog::TEXT:
|
||||
case execplan::CalpontSystemCatalog::DOUBLE:
|
||||
case execplan::CalpontSystemCatalog::UDOUBLE:
|
||||
case execplan::CalpontSystemCatalog::FLOAT:
|
||||
case execplan::CalpontSystemCatalog::UFLOAT:
|
||||
{
|
||||
double vf = std::round(rc->getDoubleVal(row, isNull));
|
||||
value = (int32_t)vf;
|
||||
}
|
||||
break;
|
||||
case execplan::CalpontSystemCatalog::VARCHAR: // including CHAR'
|
||||
case execplan::CalpontSystemCatalog::CHAR:
|
||||
case execplan::CalpontSystemCatalog::TEXT:
|
||||
case execplan::CalpontSystemCatalog::DOUBLE:
|
||||
case execplan::CalpontSystemCatalog::UDOUBLE:
|
||||
case execplan::CalpontSystemCatalog::FLOAT:
|
||||
case execplan::CalpontSystemCatalog::UFLOAT:
|
||||
{
|
||||
double vf = std::round(rc->getDoubleVal(row, isNull));
|
||||
value = (int32_t)vf;
|
||||
}
|
||||
break;
|
||||
|
||||
case execplan::CalpontSystemCatalog::DECIMAL:
|
||||
case execplan::CalpontSystemCatalog::UDECIMAL:
|
||||
{
|
||||
value = static_cast<int32_t>(rc->getDecimalVal(row, isNull).toSInt64Round());
|
||||
}
|
||||
break;
|
||||
case execplan::CalpontSystemCatalog::DECIMAL:
|
||||
case execplan::CalpontSystemCatalog::UDECIMAL:
|
||||
{
|
||||
value = static_cast<int32_t>(rc->getDecimalVal(row, isNull).toSInt64Round());
|
||||
}
|
||||
break;
|
||||
|
||||
case execplan::CalpontSystemCatalog::DATE:
|
||||
case execplan::CalpontSystemCatalog::DATETIME:
|
||||
case execplan::CalpontSystemCatalog::TIMESTAMP:
|
||||
{
|
||||
continue; // Dates are ignored
|
||||
}
|
||||
break;
|
||||
case execplan::CalpontSystemCatalog::DATE:
|
||||
case execplan::CalpontSystemCatalog::DATETIME:
|
||||
case execplan::CalpontSystemCatalog::TIMESTAMP:
|
||||
{
|
||||
continue; // Dates are ignored
|
||||
}
|
||||
break;
|
||||
|
||||
default:
|
||||
{
|
||||
value = 0;
|
||||
}
|
||||
}
|
||||
|
||||
if (isNull)
|
||||
continue;
|
||||
|
||||
numBytes += getChar(value, pBuf);
|
||||
default:
|
||||
{
|
||||
value = 0;
|
||||
}
|
||||
}
|
||||
|
||||
isNull = false;
|
||||
/* Check whether we got a well-formed string */
|
||||
MY_STRCOPY_STATUS status;
|
||||
int32_t actualBytes = cs->well_formed_char_length(buf, buf + numBytes, numBytes, &status);
|
||||
if (isNull)
|
||||
continue;
|
||||
|
||||
if (UNLIKELY(actualBytes < numBytes))
|
||||
{
|
||||
numBytes = actualBytes;
|
||||
ostringstream os;
|
||||
os << "Invalid character string for " << cs->cs_name.str << ": value = " << hex << buf + actualBytes;
|
||||
logging::Message::Args args;
|
||||
logging::Message message(9);
|
||||
args.add(os.str());
|
||||
logging::LoggingID logid(28); // Shows as PrimProc, which may not be correct in all cases
|
||||
logging::Logger logger(logid.fSubsysID);
|
||||
logger.logMessage(logging::LOG_TYPE_WARNING, message, logid);
|
||||
// TODO: push warning to client
|
||||
}
|
||||
std::string ret(buf, numBytes);
|
||||
return ret;
|
||||
numBytes += getChar(value, pBuf);
|
||||
}
|
||||
|
||||
isNull = false;
|
||||
/* Check whether we got a well-formed string */
|
||||
MY_STRCOPY_STATUS status;
|
||||
int32_t actualBytes = cs->well_formed_char_length(buf, buf + numBytes, numBytes, &status);
|
||||
|
||||
if (UNLIKELY(actualBytes < numBytes))
|
||||
{
|
||||
numBytes = actualBytes;
|
||||
ostringstream os;
|
||||
os << "Invalid character string for " << cs->cs_name.str << ": value = " << hex << buf + actualBytes;
|
||||
logging::Message::Args args;
|
||||
logging::Message message(9);
|
||||
args.add(os.str());
|
||||
logging::LoggingID logid(28); // Shows as PrimProc, which may not be correct in all cases
|
||||
logging::Logger logger(logid.fSubsysID);
|
||||
logger.logMessage(logging::LOG_TYPE_WARNING, message, logid);
|
||||
// TODO: push warning to client
|
||||
}
|
||||
std::string ret(buf, numBytes);
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
} // namespace funcexp
|
||||
} // namespace funcexp
|
||||
// vim:ts=4 sw=4:
|
||||
|
Reference in New Issue
Block a user