Skip to content

Commit 02d47d0

Browse files
Fix Regexp Search for Null values
1 parent b424e40 commit 02d47d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/resources/db_changelog/db.changelog-0.3.1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -278,7 +278,7 @@
278278
AND (request_test_resolution_id = '' OR test_resolution_id=request_test_resolution_id)
279279
AND (request_debug = '' OR debug=request_debug)
280280
AND (request_fail_reason = '' OR INSTR(fail_reason, request_fail_reason) > 0)
281-
AND fail_reason REGEXP request_fail_reason_regex
281+
AND IFNULL(fail_reason, '') REGEXP request_fail_reason_regex
282282
ORDER BY start_date DESC
283283
LIMIT request_limit
284284
;

0 commit comments

Comments
 (0)