Below is the list of changes that have just been committed into a local
5.1 repository of tnurnberg. When tnurnberg 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, 2007-12-20 08:15:34+01:00, tnurnberg@stripped +1 -0
Bug#31990: MINUTE() and SECOND() return bogus results when used on a DATE
post-merge fixes
mysql-test/r/type_date.result@stripped, 2007-12-20 08:15:32+01:00, tnurnberg@stripped +5 -0
post-merge fixes: test results
diff -Nrup a/mysql-test/r/type_date.result b/mysql-test/r/type_date.result
--- a/mysql-test/r/type_date.result 2007-12-20 07:41:47 +01:00
+++ b/mysql-test/r/type_date.result 2007-12-20 08:15:32 +01:00
@@ -260,4 +260,9 @@ INSERT INTO t1 VALUES ('1000-00-00');
ERROR 22007: Incorrect date value: '1000-00-00' for column 'a' at row 1
SET SQL_MODE=DEFAULT;
DROP TABLE t1,t2;
+CREATE TABLE t1 SELECT curdate() AS f1;
+SELECT hour(f1), minute(f1), second(f1) FROM t1;
+hour(f1) minute(f1) second(f1)
+0 0 0
+DROP TABLE t1;
End of 5.0 tests
| Thread |
|---|
| • bk commit into 5.1 tree (tnurnberg:1.2674) BUG#31990 | Tatjana A Nuernberg | 20 Dec |