diff options
author | unknown <monty@hundin.mysql.fi> | 2001-10-04 21:52:41 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-10-04 21:52:41 +0300 |
commit | bd7b4aaa7dac716bb6d54b3d1dd355f78b68f0f2 (patch) | |
tree | ce2737a2cb7f8b0c9ce7fc646f448b1fc1a1bc92 /include/mysql.h | |
parent | 6bede5bed1add70fb5bb442ba70fe029c4c534f7 (diff) | |
download | mariadb-git-bd7b4aaa7dac716bb6d54b3d1dd355f78b68f0f2.tar.gz |
New script: explain_log.sh
Portability fixes.
Handle cleanup when we get an error before the message file is read.
Fix bug in multi-table delete
include/mysql.h:
Portability fix
mysql-test/mysql-test-run.sh:
Don't use long names for sockets (portability fix)
sql/derror.cc:
Better cleanup
sql/mysqld.cc:
Fix that --enable-locking works.
Handle case when we get an error before the message file is read
sql/sql_delete.cc:
Fix bug in multi-table delete
sql/sql_select.cc:
Fix bug in multi-table delete
sql/table.h:
Fix bug in multi-table delete
tools/mysqlmanager.c:
Portability fixes
Diffstat (limited to 'include/mysql.h')
-rw-r--r-- | include/mysql.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mysql.h b/include/mysql.h index ff914037eaf..12c55edd6f5 100644 --- a/include/mysql.h +++ b/include/mysql.h @@ -384,8 +384,8 @@ int STDCALL mysql_drop_db(MYSQL *mysql, const char *DB); */ int simple_command(MYSQL *mysql,enum enum_server_command command, - const char *arg, ulong length, my_bool skipp_check); -ulong net_safe_read(MYSQL* mysql); + const char *arg, unsigned long length, my_bool skipp_check); +unsigned long net_safe_read(MYSQL* mysql); #ifdef __cplusplus } |