There was a recent change in the 5.x-2.3 to 5.x-2.4 versions that changed the SQL from checking for trid (5.x-2.3) verses now checking for trid IS NOT NULL (5.x-2.4). I think that the proper check is trid <> 0 but since it's currently looking for NULL, I've put together a patch that looks for 0 and NULL.
| Comment | File | Size | Author |
|---|---|---|---|
| notnull.patch | 1.85 KB | douggreen |
Comments
Comment #1
owen barton commentedI can reproduce this problem and the attached patch fixes it.
Comment #2
fall_0ut commentedI reproduce the same problem and this patch fixed.
Thanks
Comment #3
scb commentedAgreed. I've had the same problem, and testing for trid<>0 fixes it. RTBC, IMO.
Comment #4
add1sun commentedYep, bit by the same bug and came up with the same solution. Still RTBC.
Comment #5
nedjoI marked [#/289502] a duplicate. That patch removed the IS NOT NULL.
Comment #6
jose reyero commentedApplied the patch, just in case anyone still using this version. Thanks.