diff options
author | gshchepa/uchum@gleb.loc <> | 2007-06-20 14:21:48 +0500 |
---|---|---|
committer | gshchepa/uchum@gleb.loc <> | 2007-06-20 14:21:48 +0500 |
commit | 0bd3dd9a37ff64083b3c2eb8681ee36817108e5b (patch) | |
tree | 6fc0add93449b9efd6aaa0452b1173d8d3a119ad | |
parent | 2379f9778deabf14da0f0beaa97e543ce808bcbd (diff) | |
download | mariadb-git-0bd3dd9a37ff64083b3c2eb8681ee36817108e5b.tar.gz |
metadata.test, metadata.result:
Updated test case for bug #28898. Additional cleanup.
-rw-r--r-- | mysql-test/r/metadata.result | 2 | ||||
-rw-r--r-- | mysql-test/t/metadata.test | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/metadata.result b/mysql-test/r/metadata.result index 283dc8a02ae..4a776b6a253 100644 --- a/mysql-test/r/metadata.result +++ b/mysql-test/r/metadata.result @@ -179,6 +179,6 @@ c1 c2 1 1 2 2 3 3 -DROP VIEW v1; +DROP VIEW v1,v2; DROP TABLE t1,t2; End of 5.0 tests diff --git a/mysql-test/t/metadata.test b/mysql-test/t/metadata.test index ed510bc2c89..65c062399b7 100644 --- a/mysql-test/t/metadata.test +++ b/mysql-test/t/metadata.test @@ -109,7 +109,7 @@ SELECT v1.c1, v2.c2 FROM v1 JOIN v2 ON c1=c2 GROUP BY v1.c1; SELECT v1.c1, v2.c2 FROM v1 JOIN v2 ON c1=c2 GROUP BY v1.c1 ORDER BY v2.c2; --disable_metadata -DROP VIEW v1; +DROP VIEW v1,v2; DROP TABLE t1,t2; --echo End of 5.0 tests |