Commit 473d4247 authored by unknown's avatar unknown

Bug#31990: MINUTE() and SECOND() return bogus results when used on a DATE

post-merge fixes


mysql-test/r/type_date.result:
  post-merge fixes: test results
parent 0aec8b21
......@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment