我一直在尝试在mysql 5.6中添加用户定义的函数,它执行一个简单的任务 - 即找到column1的最大值并返回另一列的值,即column2,它对应于column1的最大值。
我知道这个概念中有一些注意事项,比如如果column1的2个最大值,那么应该返回column2的哪个对应值。但是这些事情现在不是我关注的主要领域。
我已经编写了函数程序,其中column1和column2都是双精度数。它正在运行。但是当我尝试使用column1为double并且column2是string类型的情况时。我面临的问题是它给出了错误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插件lib
cp udf_strvalformax.so /usr/lib/mysql/plugin/
最后调用create函数
CREATE AGGREGATE FUNCTION strvalformax RETURNS STRING SONAME 'udf_strvalformax.so';
它给出了错误
ERROR 1127 (HY000): Can't find symbol 'strvalformax' in library
我还检查了共享对象文件以查看符号是否可用并且可用。这是nm -gC --demangle udf_strvalformax.so
0000000000200a50 D __bss_start
0000000000200a50 D _edata
0000000000200a50 D _end
U free
U malloc
U strcpy
U strlen
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 operator delete(void*)
U operator new(unsigned long)
我一直试图找出问题1.5天但没有进展。可能我在这里错过了一些东西。提前谢谢。
答案 0 :(得分:1)
我还检查了共享对象文件以查看符号是否可用 是否可以。
不,它不存在。 .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 )
使用不同的原型,因此这些功能并不相同。
尝试使用确切的函数原型声明extern C
(参数result
和res_length
丢失)。