summaryrefslogtreecommitdiff
path: root/mysql-test/t/case.test
diff options
context:
space:
mode:
authorkaa@polly.local <>2006-09-12 16:25:40 +0400
committerkaa@polly.local <>2006-09-12 16:25:40 +0400
commit5df7611caa310a88666f7fd2a7f14bd23ca8e24a (patch)
tree97f3aa51bcfc89e91863557802371fd070ee6d15 /mysql-test/t/case.test
parent268c7a352280cf2e2bc334296866b46867777c64 (diff)
downloadmariadb-git-5df7611caa310a88666f7fd2a7f14bd23ca8e24a.tar.gz
Post-review fixes for bug #20924
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