-
-
Notifications
You must be signed in to change notification settings - Fork 138
Open
Description
At the moment, the FIND_IN_SET
translation (used by bbPress's topic subscription notifications) turns into PATINDEX
:
https://github.com/ProjectNami/projectnami/blob/master/wp-includes/translations.php#L1151
However, the pattern
argument isn't surrounded by %
s, which https://docs.microsoft.com/en-us/sql/t-sql/functions/patindex-transact-sql suggests it must be, so returns no results:
SELECT PATINDEX(',456,',',123,456,789,')
-- returns 0
SELECT PATINDEX('%,456,%',',123,456,789,')
-- returns 5
I'll submit a PR to fix this, but @LitKnd pointed out that since SQL 2016, there's the rather nice STRING_SPLIT
function which might offer a neater solution. What's your feeling on how many folks would be hit by upping the current SQL 2012 requirement?
Metadata
Metadata
Assignees
Labels
No labels