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 | 6b72857803d50d1090e6fa514b0ddee81234fab7 (patch) | |
tree | 655a7177f798d31a69575ff2dd51a51e575aecb5 /mysql-test/t/mysqldump.test | |
parent | 1c39d5ff8fa695573907505996b6c09e7d3d1261 (diff) | |
parent | 0d9589a433a1473e91e446fb842f788e5e1ff2c3 (diff) | |
download | mariadb-git-6b72857803d50d1090e6fa514b0ddee81234fab7.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 |