diff options
author | Sergei Golubchik <serg@mariadb.org> | 2014-11-27 09:45:10 +0100 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2014-12-04 10:41:52 +0100 |
commit | 0438f1254090f65290b3d58a7c2722d1c5311afd (patch) | |
tree | b7b7653fb16d40e130ba26aadc14af3fb3ecb346 /mysql-test/t/compound.test | |
parent | 717a264ef4d74fdb9723fc2e713878d26c7d3a8e (diff) | |
download | mariadb-git-0438f1254090f65290b3d58a7c2722d1c5311afd.tar.gz |
MDEV-6980 OUT parameters in PREPARE
revert the patch for "out parameters in prepare"
Diffstat (limited to 'mysql-test/t/compound.test')
-rw-r--r-- | mysql-test/t/compound.test | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/mysql-test/t/compound.test b/mysql-test/t/compound.test index 06d09817ac1..1c5d12a1665 100644 --- a/mysql-test/t/compound.test +++ b/mysql-test/t/compound.test @@ -28,14 +28,6 @@ delimiter ;| source include/show_binlog_events.inc; delimiter |; -PREPARE stmt FROM "BEGIN NOT ATOMIC - DECLARE v_res INT; - SELECT COUNT(*) INTO v_res FROM t1; - SELECT 'Hello World', v_res INTO ?,?; -END"| -SET @val="", @val2=""| -EXECUTE stmt USING @val, @val2| -SELECT @val, @val2| DROP TABLE t1| # |