diff options
author | unknown <monty@mysql.com> | 2005-05-16 13:34:23 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2005-05-16 13:34:23 +0300 |
commit | 70c4325d67256c44c47d41b7ef68ef5e7e9a3751 (patch) | |
tree | c8f6b5c11c76bb9b2298a70403114f9d6e1b3695 /mysql-test/t/ps.test | |
parent | 577f140e3f0010c2a50c988f523d66b9d5d27303 (diff) | |
download | mariadb-git-70c4325d67256c44c47d41b7ef68ef5e7e9a3751.tar.gz |
Fixed failing tests for not 32 bit intel machines
Fixed bug in mysql_stmt_fetch() when retrieving rows to return
mysql-test/r/ps.result:
Fix to not get warnings if mysql_client_test.test fails
mysql-test/t/index_merge_ror.test:
Proper fix for 64 bit intel (which gives uses another, equal good index)
mysql-test/t/ps.test:
Fix to not get warnings if mysql_client_test.test fails
sql-common/client.c:
More debugging
sql/sql_prepare.cc:
Fixed bug in mysql_stmt_fetch() when retrieving rows to return
sql/sql_select.cc:
More debugging
tests/mysql_client_test.c:
More debugging
Diffstat (limited to 'mysql-test/t/ps.test')
-rw-r--r-- | mysql-test/t/ps.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/ps.test b/mysql-test/t/ps.test index b06d3c4caf0..f4396e41a20 100644 --- a/mysql-test/t/ps.test +++ b/mysql-test/t/ps.test @@ -3,6 +3,9 @@ # --disable_warnings drop table if exists t1,t2; + +# Avoid wrong warnings if mysql_client_test fails +drop database if exists client_test_db; --enable_warnings create table t1 |