diff options
author | Bjorn Munch <Bjorn.Munch@sun.com> | 2009-08-25 15:56:50 +0200 |
---|---|---|
committer | Bjorn Munch <Bjorn.Munch@sun.com> | 2009-08-25 15:56:50 +0200 |
commit | 3a766492913ecf1d3642063c1fa57b5d94c182a6 (patch) | |
tree | 74d246dafe8173b0625693668a60a99aa173dabe /mysql-test/r/upgrade.result | |
parent | 4692054b182a9c64cdbb1a0a1a5f2f8af4e2ae5e (diff) | |
download | mariadb-git-3a766492913ecf1d3642063c1fa57b5d94c182a6.tar.gz |
Bug #42408 Faulty regex for detecting [Warning] and [ERROR] in mysqld error log
Enabled proper pattern for Warnings and ERRORs
Added some suppressions
Diffstat (limited to 'mysql-test/r/upgrade.result')
-rw-r--r-- | mysql-test/r/upgrade.result | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mysql-test/r/upgrade.result b/mysql-test/r/upgrade.result index da6201692a9..034242079b1 100644 --- a/mysql-test/r/upgrade.result +++ b/mysql-test/r/upgrade.result @@ -108,11 +108,7 @@ a-b-c show create view `a-b-c`.v1; View Create View character_set_client collation_connection v1 CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select `a`.`f1` AS `f1` from (`a-b-c`.`t1` `a` join `information_schema`.`tables` `b`) where (convert(`a`.`f1` using utf8) = `b`.`TABLE_NAME`) utf8 utf8_general_ci -Warnings: -Note 1600 Creation context of view `a-b-c`.`v1' is invalid select * from `a-b-c`.v1; f1 -Warnings: -Note 1600 Creation context of view `a-b-c`.`v1' is invalid drop database `a-b-c`; use test; |