summaryrefslogtreecommitdiff
path: root/mysql-test/r/type_year.result
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/r/type_year.result')
-rw-r--r--mysql-test/r/type_year.result3
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/r/type_year.result b/mysql-test/r/type_year.result
index 2dc491c6166..5a484f3ce3c 100644
--- a/mysql-test/r/type_year.result
+++ b/mysql-test/r/type_year.result
@@ -353,6 +353,9 @@ c1
SELECT COUNT(*) AS total_rows, MIN(c1) AS min_value, MAX(c1) FROM t1;
total_rows min_value MAX(c1)
3 0 2155
+SELECT COUNT(*) AS total_rows, MIN(c1+0) AS min_value, MAX(c1+0) FROM t1;
+total_rows min_value MAX(c1+0)
+3 0 2155
DROP TABLE t1;
#
End of 5.1 tests