1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Fix for bug #5513: FIND_IN_SET fails if set ends with a comma

This commit is contained in:
gluh@gluh.mysql.r18.ru
2004-09-11 15:48:23 +04:00
parent 74336d596f
commit c1d25e32ec
3 changed files with 11 additions and 2 deletions

View File

@@ -47,3 +47,8 @@ select find_in_set(binary 'a',binary 'A,B,C');
select find_in_set('a',binary 'A,B,C');
select find_in_set(binary 'a', 'A,B,C');
#
# Bug5513:FIND_IN_SET fails if set ends with a comma
#
select find_in_set('1','3,1,');