summaryrefslogtreecommitdiff
path: root/mysql-test/r/type_date.result
diff options
context:
space:
mode:
authorSergei Golubchik <sergii@pisem.net>2011-03-18 19:45:00 +0100
committerSergei Golubchik <sergii@pisem.net>2011-03-18 19:45:00 +0100
commite79a72a410ef74e5105616da8eceb2798f485c57 (patch)
treeff44f5b580a5383e042e8c28780f290b87cf7070 /mysql-test/r/type_date.result
parentc629477981cc491a12c3664b81f9fb33db00e481 (diff)
downloadmariadb-git-e79a72a410ef74e5105616da8eceb2798f485c57.tar.gz
lp:737496 Assertion `(was_cut & 1) == 0' failed in Field_temporal::store_TIME_with_warning() in 5.1-micro
fix incorrect assert
Diffstat (limited to 'mysql-test/r/type_date.result')
-rw-r--r--mysql-test/r/type_date.result5
1 files changed, 5 insertions, 0 deletions
diff --git a/mysql-test/r/type_date.result b/mysql-test/r/type_date.result
index 7a71da1bd09..846225be141 100644
--- a/mysql-test/r/type_date.result
+++ b/mysql-test/r/type_date.result
@@ -283,3 +283,8 @@ the_date the_time the_date the_time
DROP TABLE t1;
DROP VIEW v1;
End of 5.1 tests
+create table t1 (f1 date, key (f1));
+insert t1 values ('2010-10-10 15:foobar');
+Warnings:
+Warning 1265 Data truncated for column 'f1' at row 1
+drop table t1;