Skip to content

Commit f1f4618

Browse files
committed
feat: exclude common false positives from v_so_breaks_dep
1 parent 77ea0fd commit f1f4618

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/sql.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -930,6 +930,9 @@ FROM
930930
v_so_breaks_dep
931931
WHERE
932932
dep_package = $1
933+
AND package NOT LIKE '%+32'
934+
AND package NOT LIKE 'gcc+cross-%'
935+
AND package NOT IN ('cuda', 'latx', 'liblol')
933936
ORDER BY
934937
package
935938
";

0 commit comments

Comments
 (0)