summaryrefslogtreecommitdiff
path: root/mysql-test/t/case.test
diff options
context:
space:
mode:
Diffstat (limited to 'mysql-test/t/case.test')
-rw-r--r--mysql-test/t/case.test6
1 files changed, 4 insertions, 2 deletions
diff --git a/mysql-test/t/case.test b/mysql-test/t/case.test
index b868ae12b69..d0d503a8821 100644
--- a/mysql-test/t/case.test
+++ b/mysql-test/t/case.test
@@ -131,9 +131,11 @@ from t1 where b=3 group by b;
drop table t1;
#
-# Bug #20924: UNSIGNED values in CASE and COALESCE are treated as SIGNED
+# Bug #20924: CAST(expr as UNSIGNED) returns SIGNED value when used in various
+# functions
+# - UNSIGNED values in CASE and COALESCE are treated as SIGNED
#
SELECT CASE 1 WHEN 1 THEN 18446744073709551615 ELSE 1 END;
SELECT COALESCE(18446744073709551615);
-# End of 4.1 tests
+--echo End of 4.1 tests