diff options
author | monty@hundin.mysql.fi <> | 2001-10-09 03:35:29 +0300 |
---|---|---|
committer | monty@hundin.mysql.fi <> | 2001-10-09 03:35:29 +0300 |
commit | d5fe1db868a8786bad901a632631c2d94eadfbe6 (patch) | |
tree | 07f2a0acc005ba2b7fb714ce60cb6f8417c6f60e /include/mysql_com.h | |
parent | 196f620e9024b12e33125c4be03c867b0fabbfcc (diff) | |
download | mariadb-git-d5fe1db868a8786bad901a632631c2d94eadfbe6.tar.gz |
One should not only have to include my_net.h to work with sockets.
This wrapper noew will include all the necessary, system specific files,
which makes all normal source files much easier to write and maintain.
Portability fixes.
Diffstat (limited to 'include/mysql_com.h')
-rw-r--r-- | include/mysql_com.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mysql_com.h b/include/mysql_com.h index a89425ae279..048b6b98918 100644 --- a/include/mysql_com.h +++ b/include/mysql_com.h @@ -203,7 +203,7 @@ typedef struct st_udf_init { my_bool maybe_null; /* 1 if function can return NULL */ unsigned int decimals; /* for real functions */ - unsigned int max_length; /* For string 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 */ } UDF_INIT; |