diff options
author | gshchepa/uchum@gleb.loc <> | 2007-07-22 01:49:41 +0500 |
---|---|---|
committer | gshchepa/uchum@gleb.loc <> | 2007-07-22 01:49:41 +0500 |
commit | 872d21eb1f782b6527f68af94122b7101e4e484e (patch) | |
tree | 84d92b74d9bc6d74616f774fb07d650e2a76ae8d /mysql-test | |
parent | 73b2848f4f3647a4b91740af5fb195423593ca9c (diff) | |
download | mariadb-git-872d21eb1f782b6527f68af94122b7101e4e484e.tar.gz |
sp.test, sp.result:
Additional test case fix for bug #29338.
Diffstat (limited to 'mysql-test')
-rw-r--r-- | mysql-test/r/sp.result | 1 | ||||
-rw-r--r-- | mysql-test/t/sp.test | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result index 4321cd92826..3103174cf2e 100644 --- a/mysql-test/r/sp.result +++ b/mysql-test/r/sp.result @@ -6206,5 +6206,6 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t1 index NULL c1 5 NULL 5 Using where; Using index DROP VIEW v1; DROP FUNCTION f1; +DROP FUNCTION f2; DROP TABLE t1; End of 5.0 tests diff --git a/mysql-test/t/sp.test b/mysql-test/t/sp.test index aeb85ac6012..22615c1cb28 100644 --- a/mysql-test/t/sp.test +++ b/mysql-test/t/sp.test @@ -7163,6 +7163,7 @@ EXPLAIN SELECT * FROM t1 WHERE c1=f2(rand()); DROP VIEW v1; DROP FUNCTION f1; +DROP FUNCTION f2; DROP TABLE t1; --echo End of 5.0 tests |