In "Executive: Use index for report__find_test" we changed an EXISTS subquery into a JOIN.
Now, the condition r.flight=f.flight is redundant because this is the join column (from USING). No functional change. CC: George Dunlap <[email protected]> Signed-off-by: Ian Jackson <[email protected]> --- Osstest/Executive.pm | 1 - 1 file changed, 1 deletion(-) diff --git a/Osstest/Executive.pm b/Osstest/Executive.pm index 66c93ab9..33de3708 100644 --- a/Osstest/Executive.pm +++ b/Osstest/Executive.pm @@ -433,7 +433,6 @@ END WHERE name=? AND name LIKE 'revision_%' AND val=? - AND r.flight=f.flight AND ${\ main_revision_job_cond('r.job') } END push @params, "revision_$tree", $revision; -- 2.20.1
