diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-10-13 09:28:35 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-10-13 09:28:35 -0600 |
commit | 5c1dbfe6a7f42e368bfffb90974effbb8c6b9f6e (patch) | |
tree | c4dd5da34820e3ec8484a4929bf1467d6492d92a /sql/mini_client.h | |
parent | a6c58676835f9424a5167a522497f1a20a5f03ee (diff) | |
download | mariadb-git-5c1dbfe6a7f42e368bfffb90974effbb8c6b9f6e.tar.gz |
64-bit portability fixes in network I/O
use $MAX_TABLES mysqltest variable to make join test portable
make test now works with the manager on IA64 Linux
client/mysqltest.c:
added MAX_TABLES variable
libmysql/libmysql.c:
portability fixes for 64-bit systems
mysql-test/mysql-test-run.sh:
fixed bug - wrong values of -display in xterm in gdb mode
mysql-test/r/join.result:
make test work on both 32-bit and 64-bit systems
mysql-test/t/join.test:
make test work on both 32-bit and 64-bit systems
sql/mini_client.cc:
64-bit portability fixes
sql/mini_client.h:
64-bit portability fixes
sql/slave.cc:
64-bit portability fixes
tools/mysqlmanager.c:
64-bit portability fixes
Diffstat (limited to 'sql/mini_client.h')
-rw-r--r-- | sql/mini_client.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mini_client.h b/sql/mini_client.h index 22cdb31f846..de78da06eec 100644 --- a/sql/mini_client.h +++ b/sql/mini_client.h @@ -35,7 +35,7 @@ mc_mysql_init(MYSQL *mysql); void STDCALL mc_mysql_debug(const char *debug); -uint STDCALL +ulong STDCALL mc_net_safe_read(MYSQL *mysql); char * STDCALL mc_mysql_error(MYSQL *mysql); |