diff options
author | evgen@moonbone.local <> | 2005-07-13 04:10:19 +0400 |
---|---|---|
committer | evgen@moonbone.local <> | 2005-07-13 04:10:19 +0400 |
commit | d72f1c9b0c0699b9b64e7e5cfcdd54b31e2bf198 (patch) | |
tree | 8f9950ee5e28f0734b91396ef109b58c033fa60a /mysql-test/t/view.test | |
parent | bb1f81607cdacf87cb3b87d6da04b5b01a8e5b50 (diff) | |
download | mariadb-git-d72f1c9b0c0699b9b64e7e5cfcdd54b31e2bf198.tar.gz |
view.result, view.test:
Fix for test case for bug#11709
Diffstat (limited to 'mysql-test/t/view.test')
-rw-r--r-- | mysql-test/t/view.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/view.test b/mysql-test/t/view.test index 6b10edc7abd..956c705de74 100644 --- a/mysql-test/t/view.test +++ b/mysql-test/t/view.test @@ -1796,6 +1796,7 @@ create table t1 (f1 int, f2 int); create view v1 as select f1 as f3, f2 as f1 from t1; insert into t1 values (1,3),(2,1),(3,2); select * from v1 order by f1; +drop view v1; drop table t1; # |