Bug#29804 UDF parameters don't contain correct string length
- Fix warnings - Export 'check_const_len' from udf_example.dll
This commit is contained in:
parent
a933f28a93
commit
9d06483f72
@ -1115,15 +1115,15 @@ my_bool check_const_len_init(UDF_INIT *initid, UDF_ARGS *args, char *message)
|
|||||||
}
|
}
|
||||||
if (args->args[0] == 0)
|
if (args->args[0] == 0)
|
||||||
{
|
{
|
||||||
initid->ptr= "Not constant";
|
initid->ptr= (char*)"Not constant";
|
||||||
}
|
}
|
||||||
else if(strlen(args->args[0]) == args->lengths[0])
|
else if(strlen(args->args[0]) == args->lengths[0])
|
||||||
{
|
{
|
||||||
initid->ptr= "Correct length";
|
initid->ptr= (char*)"Correct length";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
initid->ptr= "Wrong length";
|
initid->ptr= (char*)"Wrong length";
|
||||||
}
|
}
|
||||||
initid->max_length = 100;
|
initid->max_length = 100;
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -23,3 +23,4 @@ EXPORTS
|
|||||||
avgcost
|
avgcost
|
||||||
is_const
|
is_const
|
||||||
is_const_init
|
is_const_init
|
||||||
|
check_const_len
|
||||||
|
Loading…
x
Reference in New Issue
Block a user