1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

Merge mysql.com:/home/hf/work/mrg/my41-mrg

into  mysql.com:/home/hf/work/mrg/my50-mrg
This commit is contained in:
holyfoot/hf@hfmain.(none)
2007-11-30 22:29:34 +04:00
2 changed files with 22 additions and 8 deletions

View File

@@ -387,11 +387,11 @@ typedef struct st_udf_args
typedef struct st_udf_init
{
my_bool maybe_null; /* 1 if function can return NULL */
unsigned int decimals; /* for real functions */
unsigned long max_length; /* For string functions */
char *ptr; /* free pointer for function data */
my_bool const_item; /* 0 if result is independent of arguments */
my_bool maybe_null; /* 1 if function can return NULL */
unsigned int decimals; /* for real functions */
unsigned long max_length; /* For string functions */
char *ptr; /* free pointer for function data */
my_bool const_item; /* 1 if function always returns the same value */
} UDF_INIT;
/*
TODO: add a notion for determinism of the UDF.