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 
			
		
		
		
	
		
			
				
	
	
		
			70 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
/* Copyright (C) 2021 MariaDB Corporation
 | 
						|
 | 
						|
   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. */
 | 
						|
 | 
						|
#include <string>
 | 
						|
using namespace std;
 | 
						|
 | 
						|
#include "functor_str.h"
 | 
						|
#include "functioncolumn.h"
 | 
						|
using namespace execplan;
 | 
						|
 | 
						|
#include "rowgroup.h"
 | 
						|
using namespace rowgroup;
 | 
						|
 | 
						|
#include "dataconvert.h"
 | 
						|
using namespace dataconvert;
 | 
						|
 | 
						|
namespace funcexp
 | 
						|
{
 | 
						|
CalpontSystemCatalog::ColType Func_concat_oracle::operationType(FunctionParm& fp,
 | 
						|
                                                                CalpontSystemCatalog::ColType& /*resultType*/)
 | 
						|
{
 | 
						|
  // operation type is not used by this functor
 | 
						|
  return fp[0]->data()->resultType();
 | 
						|
}
 | 
						|
 | 
						|
// Returns the string that results from concatenating the arguments.
 | 
						|
// concat_oracle() returns NULL all arguments are NULL.
 | 
						|
// single arguments null is replaced by "".
 | 
						|
//
 | 
						|
string Func_concat_oracle::getStrVal(Row& row, FunctionParm& parm, bool& isNull,
 | 
						|
                                     CalpontSystemCatalog::ColType&)
 | 
						|
{
 | 
						|
  string ret;
 | 
						|
  string tmp;
 | 
						|
  // we default to true as any non-NULL operand will reset it to false
 | 
						|
  // and all NULL operands will leave it as true, which is intended.
 | 
						|
  isNull = true;
 | 
						|
  // TODO: do a better job of cutting down the number re-allocations.
 | 
						|
  // look at Item_func_concat::realloc_result for ideas and use
 | 
						|
  // std::string:resize() appropriatly.
 | 
						|
  for (unsigned int id = 0; id < parm.size(); id++)
 | 
						|
  {
 | 
						|
    bool tempIsNull = false;
 | 
						|
    stringValue(parm[id], row, tempIsNull, tmp);
 | 
						|
    if (!tempIsNull)
 | 
						|
    {
 | 
						|
      isNull = false;
 | 
						|
      ret.append(tmp);
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  return ret;
 | 
						|
}
 | 
						|
 | 
						|
}  // namespace funcexp
 |