summaryrefslogtreecommitdiff
path: root/mysql-test/r/mysqlslap.result
diff options
context:
space:
mode:
authorgshchepa/uchum@gleb.loc <>2007-09-17 21:39:07 +0500
committergshchepa/uchum@gleb.loc <>2007-09-17 21:39:07 +0500
commit2a5d951552c190a0e9b56122d642dff8f92a0c1f (patch)
treeef98302fe606b670100b6372efdd2551469facb3 /mysql-test/r/mysqlslap.result
parent0b7e4b4ddebf9581c73efee2c530be2a30983e8b (diff)
downloadmariadb-git-2a5d951552c190a0e9b56122d642dff8f92a0c1f.tar.gz
Fixed bug #29985.
Multiple-result processing is required during the execution of CALL statements for stored procedures, however the mysqlslap client lacked that processing.
Diffstat (limited to 'mysql-test/r/mysqlslap.result')
-rw-r--r--mysql-test/r/mysqlslap.result5
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/mysqlslap.result b/mysql-test/r/mysqlslap.result
index dfe721d10d2..8b5069bb887 100644
--- a/mysql-test/r/mysqlslap.result
+++ b/mysql-test/r/mysqlslap.result
@@ -211,3 +211,8 @@ COMMIT;
COMMIT;
SHOW TABLES;
DROP SCHEMA IF EXISTS `mysqlslap`;
+#
+# Bug #29985: mysqlslap -- improper handling of resultsets in SPROCs
+#
+DROP PROCEDURE IF EXISTS p1;
+CREATE PROCEDURE p1() SELECT 1;