diff options
author | Evgeny Potemkin <epotemkin@mysql.com> | 2009-12-03 16:24:50 +0300 |
---|---|---|
committer | Evgeny Potemkin <epotemkin@mysql.com> | 2009-12-03 16:24:50 +0300 |
commit | 2e8ad6bf64dafbaee08dba71963f411d67461d27 (patch) | |
tree | 0a0233792f81334724cfc87636a157f9f246dd21 /mysql-test/t/ps.test | |
parent | 9091535c5fc914aecaa51acf6e558ccd9800fd88 (diff) | |
parent | 026541c662539657d75fed5e7e59326abd97cec3 (diff) | |
download | mariadb-git-2e8ad6bf64dafbaee08dba71963f411d67461d27.tar.gz |
Auto-merged.
Diffstat (limited to 'mysql-test/t/ps.test')
-rw-r--r-- | mysql-test/t/ps.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/ps.test b/mysql-test/t/ps.test index c160ba993d5..4870f4836df 100644 --- a/mysql-test/t/ps.test +++ b/mysql-test/t/ps.test @@ -2000,6 +2000,7 @@ create view v1 AS select 1 as a from t1 where b; prepare stmt from "select * from v1 where a"; execute stmt; execute stmt; +deallocate prepare stmt; drop table t1; drop view v1; @@ -2009,6 +2010,7 @@ insert into t2 values (null); prepare stmt from "select 1 from t1 join t2 on a xor b where b > 1 and a =1"; execute stmt; execute stmt; +deallocate prepare stmt; drop table t1,t2; --echo # |