You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-11-03 17:13:17 +03:00 
			
		
		
		
	first was playing different with RIGHT and LEFT functions(using the getUintVal and getIntVal accordingly) https://github.com/mariadb-corporation/mariadb-columnstore-engine/pull/3234 second introduced round for ints from double, but added it to uint but not to int missing long doubles as well https://github.com/mariadb-corporation/mariadb-columnstore-engine/pull/3480
		
			
				
	
	
		
			76 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			76 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_left.cpp 3923 2013-06-19 21:43:06Z bwilkinson $
 | 
						|
 *
 | 
						|
 *
 | 
						|
 ****************************************************************************/
 | 
						|
#include <string>
 | 
						|
using namespace std;
 | 
						|
 | 
						|
#include "functor_str.h"
 | 
						|
#include "functioncolumn.h"
 | 
						|
using namespace execplan;
 | 
						|
 | 
						|
#include "rowgroup.h"
 | 
						|
using namespace rowgroup;
 | 
						|
 | 
						|
#include "joblisttypes.h"
 | 
						|
using namespace joblist;
 | 
						|
 | 
						|
namespace funcexp
 | 
						|
{
 | 
						|
CalpontSystemCatalog::ColType Func_left::operationType(FunctionParm& fp,
 | 
						|
                                                       CalpontSystemCatalog::ColType& /*resultType*/)
 | 
						|
{
 | 
						|
  // operation type is not used by this functor
 | 
						|
  return fp[0]->data()->resultType();
 | 
						|
}
 | 
						|
 | 
						|
std::string Func_left::getStrVal(rowgroup::Row& row, FunctionParm& fp, bool& isNull,
 | 
						|
                                 execplan::CalpontSystemCatalog::ColType& type)
 | 
						|
{
 | 
						|
  CHARSET_INFO* cs = type.getCharset();
 | 
						|
  // The original string
 | 
						|
  const auto& src = fp[0]->data()->getStrVal(row, isNull);
 | 
						|
  if (isNull || src.length() < 1)  // null or empty string.
 | 
						|
    return "";
 | 
						|
  // binLen represents the number of bytes in src
 | 
						|
  size_t binLen = src.length();
 | 
						|
  const char* pos = src.str();
 | 
						|
  const char* end = pos + binLen;
 | 
						|
 | 
						|
  // Negative trim length values are legal, but they don't make any real sense
 | 
						|
  int64_t trimLength = fp[1]->data()->getIntVal(row, isNull);
 | 
						|
  if (isNull || trimLength <= 0)
 | 
						|
    return "";
 | 
						|
 | 
						|
  size_t trimLengthPositive = trimLength;  // now we are sure it is positive
 | 
						|
  size_t charPos;
 | 
						|
 | 
						|
  if ((binLen <= trimLengthPositive) || (binLen <= (charPos = cs->charpos(pos, end, trimLengthPositive))))
 | 
						|
  {
 | 
						|
    return src.safeString("");
 | 
						|
  }
 | 
						|
 | 
						|
  std::string ret(pos, charPos);
 | 
						|
  return ret;
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace funcexp
 |