diff options
author | unknown <bell@sanja.is.com.ua> | 2005-11-15 18:14:53 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2005-11-15 18:14:53 +0200 |
commit | 69fae29c589e92233cf63ae32bffb9c6023d3780 (patch) | |
tree | 538f3499cc6345d63ebcd819cd4b7b02d842a87f /mysql-test/t/analyze.test | |
parent | dc44851352f68e240074ecc571216a8c2503ae0b (diff) | |
download | mariadb-git-69fae29c589e92233cf63ae32bffb9c6023d3780.tar.gz |
Test suite for BUG#13673 (the bug was fixed in the bugfix for BUG#14138)
mysql-test/r/analyze.result:
Test suite for BUG#13673
mysql-test/t/analyze.test:
Test suite for BUG#13673
Diffstat (limited to 'mysql-test/t/analyze.test')
-rw-r--r-- | mysql-test/t/analyze.test | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/t/analyze.test b/mysql-test/t/analyze.test index 3c3b3933bc3..5d653b65579 100644 --- a/mysql-test/t/analyze.test +++ b/mysql-test/t/analyze.test @@ -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 |