diff options
author | bell@sanja.is.com.ua <> | 2003-09-13 17:47:59 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2003-09-13 17:47:59 +0300 |
commit | 85547962525f3de479dca367c3bbd2a203023cae (patch) | |
tree | a3c9c07d2cdb16d8472b0fd27ea2edbe9f55cfe3 /include/mysql_com.h | |
parent | 08e5a7e135254ce4c41e0bad2821a5245148fd99 (diff) | |
download | mariadb-git-85547962525f3de479dca367c3bbd2a203023cae.tar.gz |
new UDF arguments interface (WL#1017) (SCRUM)
Diffstat (limited to 'include/mysql_com.h')
-rw-r--r-- | include/mysql_com.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/mysql_com.h b/include/mysql_com.h index cd850aa5e0a..7ad7197f695 100644 --- a/include/mysql_com.h +++ b/include/mysql_com.h @@ -278,6 +278,8 @@ typedef struct st_udf_args char **args; /* Pointer to argument */ unsigned long *lengths; /* Length of string arguments */ char *maybe_null; /* Set to 1 for all maybe_null args */ + char **attributes; /* Pointer to attribute name */ + unsigned long *attribute_lengths; /* Length of attribute arguments */ } UDF_ARGS; /* This holds information about the result */ |