You've already forked mariadb-columnstore-engine
							
							
				mirror of
				https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
				synced 2025-10-31 18:30:33 +03:00 
			
		
		
		
	This patch is the columnstore-part of the task. Columnstore wanted to have previous 32 depth, so this patch aims at keeping the compatibility.
		
			
				
	
	
		
			84 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			84 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include <string_view>
 | |
| #include <memory>
 | |
| using namespace std;
 | |
| 
 | |
| #include "functor_json.h"
 | |
| #include "functioncolumn.h"
 | |
| #include "rowgroup.h"
 | |
| using namespace execplan;
 | |
| using namespace rowgroup;
 | |
| 
 | |
| #include "dataconvert.h"
 | |
| 
 | |
| #include "jsonhelpers.h"
 | |
| using namespace funcexp::helpers;
 | |
| 
 | |
| namespace funcexp
 | |
| {
 | |
| CalpontSystemCatalog::ColType Func_json_equals::operationType(FunctionParm& fp,
 | |
|                                                               CalpontSystemCatalog::ColType& /*resultType*/)
 | |
| {
 | |
|   return fp[0]->data()->resultType();
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * getBoolVal API definition
 | |
|  */
 | |
| bool Func_json_equals::getBoolVal(Row& row, FunctionParm& fp, bool& isNull,
 | |
|                                   CalpontSystemCatalog::ColType& /*type*/)
 | |
| {
 | |
|   // auto release the DYNAMIC_STRING
 | |
|   using DynamicString = unique_ptr<DYNAMIC_STRING, decltype(&dynstr_free)>;
 | |
| 
 | |
|   DynamicString str1{new DYNAMIC_STRING(), dynstr_free};
 | |
|   if (init_dynamic_string(str1.get(), NULL, 0, 0))
 | |
|   {
 | |
|     isNull = true;
 | |
|     return true;
 | |
|   }
 | |
| 
 | |
|   DynamicString str2{new DYNAMIC_STRING(), dynstr_free};
 | |
|   if (init_dynamic_string(str2.get(), NULL, 0, 0))
 | |
|   {
 | |
|     isNull = true;
 | |
|     return true;
 | |
|   }
 | |
| 
 | |
|   const auto js1_ns = fp[0]->data()->getStrVal(row, isNull);
 | |
|   if (isNull)
 | |
|     return false;
 | |
| 
 | |
|   const auto js2_ns = fp[1]->data()->getStrVal(row, isNull);
 | |
|   if (isNull)
 | |
|     return false;
 | |
| 
 | |
|   const string_view js1 = js1_ns.unsafeStringRef();
 | |
|   const string_view js2 = js2_ns.unsafeStringRef();
 | |
| 
 | |
|   bool result = false;
 | |
| 
 | |
| #if MYSQL_VERSION_ID >= 120200
 | |
|   if (json_normalize(str1.get(), js1.data(), js1.size(), getCharset(fp[0]), NULL, &jsEg, &array))
 | |
| #else
 | |
|   if (json_normalize(str1.get(), js1.data(), js1.size(), getCharset(fp[0])))
 | |
| #endif
 | |
|   {
 | |
|     isNull = true;
 | |
|     return result;
 | |
|   }
 | |
| 
 | |
| #if MYSQL_VERSION_ID >= 120200
 | |
|   if (json_normalize(str2.get(), js2.data(), js2.size(), getCharset(fp[1]), NULL, &jsEg, &array))
 | |
| #else
 | |
|   if (json_normalize(str2.get(), js2.data(), js2.size(), getCharset(fp[1])))
 | |
| #endif
 | |
|   {
 | |
|     isNull = true;
 | |
|     return result;
 | |
|   }
 | |
| 
 | |
|   result = strcmp(str1->str, str2->str) ? false : true;
 | |
|   return result;
 | |
| }
 | |
| }  // namespace funcexp
 |