Below is the list of changes that have just been committed into a local
5.0 repository of msvensson. When msvensson does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.2021 06/02/16 22:06:07 msvensson@neptunus.(none) +1 -0
Don't disable warnings when dropping objects that should exist
mysql-test/t/mysqldump.test
1.79 06/02/16 22:06:03 msvensson@neptunus.(none) +4 -4
Don't disable warnings when dropping objects that should exist
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: msvensson
# Host: neptunus.(none)
# Root: /home/msvensson/mysql/mysqltest_replace/my50-mysqltest_replace
--- 1.78/mysql-test/t/mysqldump.test 2006-02-16 21:33:57 +01:00
+++ 1.79/mysql-test/t/mysqldump.test 2006-02-16 22:06:03 +01:00
@@ -950,15 +950,16 @@
#
--disable_warnings
DROP TABLE IF EXISTS `t1 test`;
+DROP TABLE IF EXISTS `t2 test`;
+--enable_warnings
+
CREATE TABLE `t1 test` (
`a1` int(11) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-DROP TABLE IF EXISTS `t2 test`;
CREATE TABLE `t2 test` (
`a2` int(11) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
---enable_warnings
DELIMITER //;
CREATE TRIGGER `test trig` BEFORE INSERT ON `t1 test` FOR EACH ROW BEGIN
@@ -973,11 +974,10 @@
# quoted
--exec $MYSQL_DUMP --skip-comments --compatible=ansi --triggers test
---disable_warnings
DROP TRIGGER `test trig`;
DROP TABLE `t1 test`;
DROP TABLE `t2 test`;
---enable_warnings
+
#
# BUG# 12838 mysqldump -x with views exits with error
#
| Thread |
|---|
| • bk commit into 5.0 tree (msvensson:1.2021) | msvensson | 16 Feb |