mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-04-23 07:05:36 +03:00
* Fix clang warnings * Remove vim tab guides * initialize variables * 'strncpy' output truncated before terminating nul copying as many bytes from a string as its length * Fix ISO C++17 does not allow 'register' storage class specifier for outdated bison * chars are unsigned on ARM, having if (ival < 0) always false * chars are unsigned by default on ARM and comparison with -1 if always true
174 lines
4.5 KiB
C++
174 lines
4.5 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_maketime.cpp 2665 2011-06-01 20:42:52Z rdempsey $
|
|
*
|
|
*
|
|
****************************************************************************/
|
|
|
|
#include <cstdlib>
|
|
#include <string>
|
|
#include <iomanip>
|
|
using namespace std;
|
|
|
|
#include "functor_str.h"
|
|
#include "funchelpers.h"
|
|
#include "functioncolumn.h"
|
|
#include "rowgroup.h"
|
|
using namespace execplan;
|
|
|
|
#include "dataconvert.h"
|
|
using namespace dataconvert;
|
|
|
|
namespace funcexp
|
|
{
|
|
CalpontSystemCatalog::ColType Func_maketime::operationType(FunctionParm& fp,
|
|
CalpontSystemCatalog::ColType& resultType)
|
|
{
|
|
return resultType;
|
|
}
|
|
|
|
string Func_maketime::getStrVal(rowgroup::Row& row, FunctionParm& parm, bool& isNull,
|
|
CalpontSystemCatalog::ColType&)
|
|
{
|
|
int64_t hour = 0;
|
|
int64_t min = 0;
|
|
int64_t sec = 0;
|
|
|
|
// get hour
|
|
switch (parm[0]->data()->resultType().colDataType)
|
|
{
|
|
case CalpontSystemCatalog::BIGINT:
|
|
case CalpontSystemCatalog::MEDINT:
|
|
case CalpontSystemCatalog::SMALLINT:
|
|
case CalpontSystemCatalog::TINYINT:
|
|
case CalpontSystemCatalog::INT:
|
|
case CalpontSystemCatalog::DOUBLE:
|
|
case CalpontSystemCatalog::FLOAT:
|
|
case CalpontSystemCatalog::CHAR:
|
|
case CalpontSystemCatalog::TEXT:
|
|
case CalpontSystemCatalog::VARCHAR:
|
|
{
|
|
double value = parm[0]->data()->getDoubleVal(row, isNull);
|
|
hour = (int64_t)value;
|
|
break;
|
|
}
|
|
|
|
case CalpontSystemCatalog::DECIMAL:
|
|
case CalpontSystemCatalog::UDECIMAL:
|
|
{
|
|
hour = parm[0]->data()->getDecimalVal(row, isNull).toSInt64Round();
|
|
break;
|
|
}
|
|
|
|
default: isNull = true; return "";
|
|
}
|
|
|
|
// get minute
|
|
switch (parm[1]->data()->resultType().colDataType)
|
|
{
|
|
case CalpontSystemCatalog::BIGINT:
|
|
case CalpontSystemCatalog::MEDINT:
|
|
case CalpontSystemCatalog::SMALLINT:
|
|
case CalpontSystemCatalog::TINYINT:
|
|
case CalpontSystemCatalog::INT:
|
|
case CalpontSystemCatalog::DOUBLE:
|
|
case CalpontSystemCatalog::FLOAT:
|
|
case CalpontSystemCatalog::CHAR:
|
|
case CalpontSystemCatalog::TEXT:
|
|
case CalpontSystemCatalog::VARCHAR:
|
|
{
|
|
double value = parm[1]->data()->getDoubleVal(row, isNull);
|
|
min = (int64_t)value;
|
|
break;
|
|
}
|
|
|
|
case CalpontSystemCatalog::DECIMAL:
|
|
case CalpontSystemCatalog::UDECIMAL:
|
|
{
|
|
min = parm[1]->data()->getDecimalVal(row, isNull).toSInt64Round();
|
|
break;
|
|
}
|
|
|
|
default: isNull = true; return "";
|
|
}
|
|
|
|
if (min < 0 || min > 59)
|
|
{
|
|
isNull = true;
|
|
return "";
|
|
}
|
|
|
|
// get second
|
|
switch (parm[2]->data()->resultType().colDataType)
|
|
{
|
|
case CalpontSystemCatalog::BIGINT:
|
|
case CalpontSystemCatalog::MEDINT:
|
|
case CalpontSystemCatalog::SMALLINT:
|
|
case CalpontSystemCatalog::TINYINT:
|
|
case CalpontSystemCatalog::INT:
|
|
case CalpontSystemCatalog::DOUBLE:
|
|
case CalpontSystemCatalog::FLOAT:
|
|
case CalpontSystemCatalog::CHAR:
|
|
case CalpontSystemCatalog::TEXT:
|
|
case CalpontSystemCatalog::VARCHAR:
|
|
{
|
|
double value = parm[2]->data()->getDoubleVal(row, isNull);
|
|
sec = (int64_t)value;
|
|
break;
|
|
}
|
|
|
|
case CalpontSystemCatalog::DECIMAL:
|
|
case CalpontSystemCatalog::UDECIMAL:
|
|
{
|
|
sec = parm[2]->data()->getDecimalVal(row, isNull).toSInt64Round();
|
|
break;
|
|
}
|
|
|
|
default: isNull = true; return "";
|
|
}
|
|
|
|
if (sec < 0 || sec > 59)
|
|
{
|
|
isNull = true;
|
|
return "";
|
|
}
|
|
|
|
if (hour > 838)
|
|
{
|
|
hour = 838;
|
|
min = 59;
|
|
sec = 59;
|
|
}
|
|
|
|
if (hour < -838)
|
|
{
|
|
hour = -838;
|
|
min = 59;
|
|
sec = 59;
|
|
}
|
|
|
|
// in worst case hour is 4 characters (3 digits + '-') so max
|
|
// string length is 11 (4:2:2 + '\0')
|
|
char buf[11];
|
|
snprintf(buf, 11, "%02d:%02d:%02d", (int)hour, (int)min, (int)sec);
|
|
return buf;
|
|
}
|
|
|
|
} // namespace funcexp
|