1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

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

This commit is contained in:
unknown
2004-09-11 15:48:23 +04:00
parent cd573513a3
commit 9ecf15ed74
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