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 | 167e04aa4946f60e1605686e64201712c835a54d (patch) | |
tree | c4dd5da34820e3ec8484a4929bf1467d6492d92a /mysql-test/t/join.test | |
parent | 6f51705fe0bf2edcfd90f7930933efb89abb0c04 (diff) | |
download | mariadb-git-167e04aa4946f60e1605686e64201712c835a54d.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 'mysql-test/t/join.test')
-rw-r--r-- | mysql-test/t/join.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/join.test b/mysql-test/t/join.test index 224db1dd8f0..8ada3fc1142 100644 --- a/mysql-test/t/join.test +++ b/mysql-test/t/join.test @@ -1,7 +1,7 @@ # # This failed for lia Perminov # - +eval_result; # because MAX_TABLES is different on 64-bit system drop table if exists t1,t2; create table t1 (id int primary key); create table t2 (id int); |