You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-06-13 16:01:32 +03:00
chore(build): fixes to satisfy clang19 warnings
This commit is contained in:
committed by
Leonid Fedorov
parent
9fd7f342a7
commit
a0bee173f6
@ -16,7 +16,7 @@ using namespace funcexp::helpers;
|
||||
namespace funcexp
|
||||
{
|
||||
CalpontSystemCatalog::ColType Func_json_equals::operationType(FunctionParm& fp,
|
||||
CalpontSystemCatalog::ColType& resultType)
|
||||
CalpontSystemCatalog::ColType& /*resultType*/)
|
||||
{
|
||||
return fp[0]->data()->resultType();
|
||||
}
|
||||
@ -25,7 +25,7 @@ CalpontSystemCatalog::ColType Func_json_equals::operationType(FunctionParm& fp,
|
||||
* getBoolVal API definition
|
||||
*/
|
||||
bool Func_json_equals::getBoolVal(Row& row, FunctionParm& fp, bool& isNull,
|
||||
CalpontSystemCatalog::ColType& type)
|
||||
CalpontSystemCatalog::ColType& /*type*/)
|
||||
{
|
||||
// auto release the DYNAMIC_STRING
|
||||
using DynamicString = unique_ptr<DYNAMIC_STRING, decltype(&dynstr_free)>;
|
||||
@ -54,7 +54,7 @@ bool Func_json_equals::getBoolVal(Row& row, FunctionParm& fp, bool& isNull,
|
||||
|
||||
const string_view js1 = js1_ns.unsafeStringRef();
|
||||
const string_view js2 = js2_ns.unsafeStringRef();
|
||||
|
||||
|
||||
bool result = false;
|
||||
if (json_normalize(str1.get(), js1.data(), js1.size(), getCharset(fp[0])))
|
||||
{
|
||||
|
Reference in New Issue
Block a user