You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-10-30 07:25:34 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|    Copyright (C) 2021, 2022 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. */
 | |
| 
 | |
| /* handling of the conversion of string prefixes to int64_t for quick range checking */
 | |
| 
 | |
| #include "collation.h"
 | |
| #include "joblisttypes.h"
 | |
| 
 | |
| #include "string_prefixes.h"
 | |
| 
 | |
| // XXX: string (or, actually, a BLOB) with all NUL chars will be encoded into zero. Which corresponds to
 | |
| //      encoding of empty string, or NULL.
 | |
| int64_t encodeStringPrefix(const uint8_t* str, size_t len, int charsetNumber)
 | |
| {
 | |
|   datatypes::Charset cset(charsetNumber);
 | |
|   uint8_t fixedLenPrefix[8];
 | |
|   memset(fixedLenPrefix, 0, sizeof(fixedLenPrefix));
 | |
|   cset.strnxfrm(fixedLenPrefix, sizeof(fixedLenPrefix), 8, str, len, 0);
 | |
|   int64_t acc = 0;
 | |
|   size_t i;
 | |
|   for (i = 0; i < 8; i++)
 | |
|   {
 | |
|     uint8_t byte = fixedLenPrefix[i];
 | |
|     acc = (acc << 8) + byte;
 | |
|   }
 | |
|   return acc;
 | |
| }
 | |
| 
 | |
| int64_t encodeStringPrefix_check_null(const uint8_t* str, size_t len, int charsetNumber)
 | |
| {
 | |
|   if (len < 1)
 | |
|   {
 | |
|     return joblist::UBIGINTNULL;
 | |
|   }
 | |
|   return encodeStringPrefix(str, len, charsetNumber);
 | |
| }
 |