1
0
mirror of https://github.com/MariaDB/server.git synced 2025-12-24 11:21:21 +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

@@ -64,3 +64,6 @@ find_in_set('a',binary 'A,B,C')
select find_in_set(binary 'a', 'A,B,C');
find_in_set(binary 'a', 'A,B,C')
0
select find_in_set('1','3,1,');
find_in_set('1','3,1,')
2