gpt4 book ai didi

c++ - 试图在 mysql 中添加 udf 给出错误 ERROR 1127 (HY000) : Can't find symbol in library

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:11:35 25 4
gpt4 key购买 nike

我一直在尝试在 mysql 5.6 中添加用户定义的函数,它执行一个简单的任务——即找到 column1 的最大值并返回另一列的值,即与 column1 的最大值相对应的 column2。

我知道这个概念中有一些注意事项,比如如果 column1 有 2 个最大值,那么应该返回 column2 的哪个对应值。但这些不是我现在主要关注的领域。

我已经编写了 column1 和 column2 都是 double 函数的程序。它正在运行。但是当我尝试 column1 是 double 而 column2 是字符串类型的情况时。我面临的问题是它给出了错误 ERROR 1127 (HY000): Can't find symbol 'strvalformax' in library 。这是我的 complete code

#ifdef STANDARD
#include <stdio.h>
#include <string.h>
#ifdef __WIN__
typedef unsigned __int64 ulonglong;
typedef __int64 longlong;
#else
typedef unsigned long long ulonglong;
typedef long long longlong;
#endif /*__WIN__*/
#else
#include <my_global.h>
#include <my_sys.h>
#endif
#include <mysql.h>
#include <m_ctype.h>
#include <m_string.h>

#ifdef HAVE_DLOPEN


extern "C" {

my_bool strvalformax_init( UDF_INIT* initid, UDF_ARGS* args, char* message );
void strvalformax_deinit( UDF_INIT* initid );
void strvalformax_clear(UDF_INIT *initid, char *is_null, char *is_error);
void strvalformax_reset( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );
void strvalformax_add( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );
char* strvalformax( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );

}


struct max_data
{
double max;
char* colval;
};


my_bool strvalformax_init( UDF_INIT* initid, UDF_ARGS* args, char* message )
{
if (args->arg_count != 2)
{
strcpy(message,"wrong number of arguments: strvalformax() requires two arguments");
return 1;
}
if (args->arg_type[1]!=STRING_RESULT)
{
strcpy(message,"correlation() requires a string as parameter 2");
return 1;
}

max_data *buffer = new max_data;
buffer->max = NULL;
buffer->colval= NULL;
initid->ptr = (char*)buffer;
return 0;
}


void strvalformax_deinit( UDF_INIT* initid )
{
max_data *buffer = (max_data*)initid->ptr;
if(buffer->colval!=NULL){
free(buffer->colval);
buffer->colval=NULL;
}
delete initid->ptr;
}

void strvalformax_clear(UDF_INIT *initid, char *is_null, char *is_error)
{
max_data *buffer = (max_data*)initid->ptr;
*is_null = 0;
*is_error = 0;
buffer->max=NULL;
buffer->colval=NULL;
}

void strvalformax_reset( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* is_error )
{
strvalformax_clear(initid, is_null, is_error);
strvalformax_add( initid, args, is_null, is_error );
}


void strvalformax_add( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char* is_error )
{
max_data *buffer = (max_data*)initid->ptr;
if (args->args[0]!=NULL && args->args[1]!=NULL)
{
if(buffer->max==NULL){
buffer->max = *(double*)args->args[0];
if(buffer->colval!=NULL){
free(buffer->colval);
buffer->colval=NULL;
}
buffer->colval = (char *)malloc(args->attribute_lengths[1]+1);
strcpy(buffer->colval,args->args[1],attribute_lengths[1]);
}else{
if((*(double*)args->args[0])>(buffer->max)){
buffer->max = *(double *)args->args[0];
if(buffer->colval!=NULL){
free(buffer->colval);
buffer->colval=NULL;
}
buffer->colval = (char *)malloc(args->attribute_lengths[1]+1);
strcpy(buffer->colval,args->args[1]);
}
}
}
}


char *strvalformax ( UDF_INIT* initid, UDF_ARGS* args,char* result,unsigned long* res_length, char* is_null, char* is_error )
{
max_data* buffer = (max_data*)initid->ptr;
result = buffer->colval;
*res_length = strlen(buffer->colval);
return result;
}



#endif

用于编译和链接的命令g++ -o udf_strvalformax.o -O2 -fPIC -I/usr/src/mariadb-5.5.30/include/-I/usr/include/mysql -DHAVE_DLOPEN=1 -DMYSQL_DYNAMIC_PLUGIN -c udf_strvalformax.cc

用于链接到共享库的命令ld -shared -o udf_strvalformax.so udf_strvalformax.o

将共享对象文件复制到mysql插件库cp udf_strvalformax.so/usr/lib/mysql/plugin/

最后调用create函数创建聚合函数 strvalformax 返回字符串 SONAME 'udf_strvalformax.so';

它给出了错误错误 1127 (HY000):在库中找不到符号“strvalformax”我还检查了共享对象文件以查看符号是否可用以及它是否可用。这是 nm -gC --demangle udf_strvalformax.so

的结果

0000000000200a50 D __bss_start
0000000000200a50 D _edata
0000000000200a50 D_end
你有空
u malloc
U 函数
乌斯特伦
00000000000006c0 T strvalformax_add
00000000000006a0 T strvalformax_clear
0000000000000660 T strvalformax_deinit
0000000000000540 T strvalformax_init
0000000000000760 T strvalformax_reset
00000000000007a0 T strvalformax(st_udf_init*, st_udf_args*, char*, unsigned long*, char*, char*)
U 运算符 delete(void*)
U operator new(unsigned long)

我已经尝试找出问题 1.5 天,但没有任何进展。可能是我遗漏了一些东西。在此先感谢。

最佳答案

I also checked in the shared object file to see if symbol is available or not and it is available.

不,它不在那里。 .so 包含一个损坏的符号

00000000000007a0 T strvalformax(st_udf_init*, st_udf_args*, char*, unsigned long*, char*, char*)

服务器只在其中查找 strvalformax

使用普通

nm udf_strvalformax.so

看看区别。

问题是使用 extern "C"

的声明
  char* strvalformax( UDF_INIT* initid, UDF_ARGS* args, char* is_null, char *error );

以及函数的实现

char *strvalformax ( UDF_INIT* initid, UDF_ARGS* args,char* result,unsigned long* res_length, char* is_null, char* is_error )

使用不同的原型(prototype),所以它们不是关于相同的功能。

尝试使用准确的函数原型(prototype)声明 extern C(缺少参数 resultres_length)。

关于c++ - 试图在 mysql 中添加 udf 给出错误 ERROR 1127 (HY000) : Can't find symbol in library,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40552025/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com