1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Test suite for BUG#13673 (the bug was fixed in the bugfix for BUG#14138)

This commit is contained in:
bell@sanja.is.com.ua
2005-11-15 18:14:53 +02:00
parent 5d8cefe0b4
commit 297639bdbe
2 changed files with 16 additions and 0 deletions

View File

@ -39,4 +39,13 @@ check table t1;
drop table t1;
#
# procedure in PS BUG#13673
#
CREATE TABLE t1 (a int);
prepare stmt1 from "SELECT * FROM t1 PROCEDURE ANALYSE()";
execute stmt1;
execute stmt1;
deallocate prepare stmt1;
# End of 4.1 tests