1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Fix for bug#2972 Problem the the CONV() function

This commit is contained in:
unknown
2004-03-15 19:18:30 +04:00
parent afedd9f8f7
commit 60354533c1
3 changed files with 18 additions and 8 deletions

View File

@ -361,6 +361,13 @@ explain extended select md5('hello'), sha('abc'), sha1('abc'), soundex(''), 'moo
SELECT lpad(12345, 5, "#");
#
# Bug #2972
#
SELECT conv(71, 10, 36), conv('1Z', 36, 10);
#
# Bug #3089