diff options
author | Chad MILLER <chad@mysql.com> | 2009-03-10 12:53:43 -0400 |
---|---|---|
committer | Chad MILLER <chad@mysql.com> | 2009-03-10 12:53:43 -0400 |
commit | b5804db3930ef25f417c2e61e311b7c787df45df (patch) | |
tree | 655a7177f798d31a69575ff2dd51a51e575aecb5 /mysql-test/t/mysqldump.test | |
parent | 636d8c50621366facfbd9417a5f25ebcc5c76b91 (diff) | |
parent | 89a1db2bd228965707645ba346519b824f7a48e9 (diff) | |
download | mariadb-git-b5804db3930ef25f417c2e61e311b7c787df45df.tar.gz |
Merge from bugfix tree.
Diffstat (limited to 'mysql-test/t/mysqldump.test')
-rw-r--r-- | mysql-test/t/mysqldump.test | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/mysql-test/t/mysqldump.test b/mysql-test/t/mysqldump.test index f252e65c74c..52eecc62931 100644 --- a/mysql-test/t/mysqldump.test +++ b/mysql-test/t/mysqldump.test @@ -1649,6 +1649,20 @@ DROP TABLE t1,t2; # We reset concurrent_inserts value to whatever it was at the start of the test SET @@GLOBAL.CONCURRENT_INSERT = @OLD_CONCURRENT_INSERT; +--echo # +--echo # Bug #42635: mysqldump includes views that were excluded using +--echo # the --ignore-table option +--echo # + +create database db42635; +use db42635; +create table t1 (id int); +create view db42635.v1 (c) as select * from db42635.t1; +create view db42635.v2 (c) as select * from db42635.t1; +--exec $MYSQL_DUMP --skip-comments --ignore-table=db42635.v1 db42635 +use test; +drop database db42635; + --echo # --echo # Bug#33550 mysqldump 4.0 compatibility broken |