List:Commits« Previous MessageNext Message »
From:tomas Date:January 23 2008 8:51pm
Subject:bk commit into 5.0 tree (tomas:1.2587)
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of tomas.  When tomas 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@stripped, 2008-01-23 21:51:01+01:00, tomas@stripped +1 -0
  correct result to be the same as in 5.0

  mysql-test/r/view.result@stripped, 2008-01-23 21:50:59+01:00, tomas@stripped +4 -4
    correct result to be the same as in 5.0

diff -Nrup a/mysql-test/r/view.result b/mysql-test/r/view.result
--- a/mysql-test/r/view.result	2008-01-10 13:04:16 +01:00
+++ b/mysql-test/r/view.result	2008-01-23 21:50:59 +01:00
@@ -2720,12 +2720,12 @@ View	Create View
 v1	CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select (year(`t1`.`test_date`) - year(`t1`.`DOB`)) AS `Age` from `t1` having (`Age` < 75)
 SELECT (year(test_date)-year(DOB)) AS Age FROM t1 HAVING Age < 75;
 Age
-44
-40
+43
+39
 SELECT * FROM v1;
 Age
-44
-40
+43
+39
 DROP VIEW v1;
 DROP TABLE t1;
 CREATE TABLE t1 (id int NOT NULL PRIMARY KEY, a char(6) DEFAULT 'xxx');
Thread
bk commit into 5.0 tree (tomas:1.2587)tomas23 Jan