diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:04:16 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 18:04:16 +0000 |
commit | a68fb2d8219f6bccc573009600e9f23e89226a5e (patch) | |
tree | d742d35d14ae816e99293d2b01face30e9f3a46b /mysql-test/main/sp-bugs2.test | |
parent | Initial commit. (diff) | |
download | mariadb-10.6-upstream.tar.xz mariadb-10.6-upstream.zip |
Adding upstream version 1:10.6.11.upstream/1%10.6.11upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'mysql-test/main/sp-bugs2.test')
-rw-r--r-- | mysql-test/main/sp-bugs2.test | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/mysql-test/main/sp-bugs2.test b/mysql-test/main/sp-bugs2.test new file mode 100644 index 00000000..2579e348 --- /dev/null +++ b/mysql-test/main/sp-bugs2.test @@ -0,0 +1,29 @@ +# +# MDEV-6610 Assertion `thd->is_error() || thd->killed' failed in mysql_execute_command on executing an SP with repeated CREATE TABLE .. SELECT +# +CREATE TABLE t1 (i INT); +SET @a = 2; + +CREATE TABLE IF NOT EXISTS t2 (i INT) ENGINE = MyISAM + AS SELECT * FROM t1; +CREATE TABLE IF NOT EXISTS t2 (i INT) ENGINE = MyISAM + AS SELECT * FROM t1; +DROP TABLE t2; + +--delimiter | +CREATE PROCEDURE sp() +BEGIN +REPEAT + CREATE TABLE IF NOT EXISTS t2 (i INT) ENGINE = MyISAM + AS SELECT * FROM t1; + SET @a = @a - 1; +UNTIL @a = 0 +END REPEAT ; +END | +--delimiter ; + +CALL sp(); + +DROP PROCEDURE sp; +DROP TABLE t1, t2; + |