因为这是我第一次编写 UDF,所以我尝试编写简单的 UDF 来返回传递给 UDF 的相同参数。
代码如下:
#include <stdlib.h>
#include <stdio.h>
#include <string>
#include <cstring>
#include <mysql.h>
#include <ctype.h>
#include <my_global.h>
#include <my_sys.h>
using namespace std;
extern "C" my_bool get_arg_init(UDF_INIT *initid, UDF_ARGS *args,
char *message)
{
if ( ( args->arg_count != 1 ) || ( args->arg_type[0] != STRING_RESULT ) )
{
strcpy( message, "Wrong argument type." );
return 1;
}
return 0;
}
extern "C" void get_arg_deinit(UDF_INIT *initid)
{
//nothing to free here
}
extern "C" char *get_arg(UDF_INIT *initid, UDF_ARGS *args,
char *result, unsigned long *length,
char *is_null, char *error)
{
std::string str = args->args[0]; // get the first argument passed
memcpy(result, str.c_str(), str.size()); // copy argument value into result buffer
*length = str.size(); // set length
return result;//return the same argument
}
我的表有数据;
SELECT c_name FROM tbl;
这将返回数据为:
# c_name
amogh bharat shah
viraj
如果我使用 UDF 执行查询:
SELECT get_arg(c_name) FROM tbl;
这将返回:
# get_arg(c_name)
amogh bharat shah
viraj bharat shah
看起来当第二行前 5 个字符被实际行数据替换时,字符串的其他部分是来自第一行的垃圾。
为什么会发生这种情况?我应该改变什么功能以避免字符串重叠?