summaryrefslogtreecommitdiff
path: root/mysql-test/include/ps_query.inc
diff options
context:
space:
mode:
authorunknown <konstantin@mysql.com>2004-09-28 21:44:42 +0400
committerunknown <konstantin@mysql.com>2004-09-28 21:44:42 +0400
commit22cca35841c563fa562336c2cf20202b7c0ee883 (patch)
treea0cb0d6c032523c09c52a87da27f247f5c6fbee4 /mysql-test/include/ps_query.inc
parent18fe537cf16c4d5bcd2eb881c7f95b0d79f64d82 (diff)
downloadmariadb-git-22cca35841c563fa562336c2cf20202b7c0ee883.tar.gz
Some of the recently pushed prepared statements
tests were disabled due to failures caused by floating point conversion issues on optimized builds). mysql-test/include/ps_conv.inc: Disable some of the tests for the test suite to pass on an optimized build (floating point issues...). mysql-test/include/ps_query.inc: Disable some of the tests for the test suite to pass on an optimized build (floating point issues...). mysql-test/r/ps_2myisam.result: Fix test results. mysql-test/r/ps_3innodb.result: Fix test results. mysql-test/r/ps_4heap.result: Fix test results. mysql-test/r/ps_5merge.result: Fix test results. mysql-test/r/ps_6bdb.result: Fix test results. mysql-test/r/ps_7ndb.result: Fix test results.
Diffstat (limited to 'mysql-test/include/ps_query.inc')
-rw-r--r--mysql-test/include/ps_query.inc5
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/include/ps_query.inc b/mysql-test/include/ps_query.inc
index 3ebe3c7b5a1..e02d0d5bf96 100644
--- a/mysql-test/include/ps_query.inc
+++ b/mysql-test/include/ps_query.inc
@@ -540,6 +540,10 @@ FROM t9,
(select c25 x, c32 y from t2) tt WHERE x = c25 ' ;
--enable_metadata
prepare stmt1 from @stmt ;
+#
+# Result log was disabled upon test case failure in the optimized build.
+#
+--disable_result_log
execute stmt1 ;
--disable_metadata
execute stmt1 ;
@@ -588,6 +592,7 @@ execute stmt1 using @arg00, @arg01, @arg02, @arg03, @arg04, @arg05, @arg06,
--disable_metadata
execute stmt1 using @arg00, @arg01, @arg02, @arg03, @arg04, @arg05, @arg06,
@arg07, @arg08, @arg09 ;
+--enable_result_log
drop table t2 ;