We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c2b1e4 commit 5c90b90Copy full SHA for 5c90b90
rust/ql/src/queries/telemetry/DatabaseQualityDiagnostics.ql
@@ -12,11 +12,9 @@ import codeql.util.Unit
12
class DbQualityDiagnostic extends Unit {
13
DbQualityDiagnostic() {
14
exists(float percentageGood |
15
- CallTargetStatsReport::percentageOfOk(_, percentageGood)
+ CallTargetStatsReport::percentageOfOk(_, percentageGood) and percentageGood < 50
16
or
17
- MacroCallTargetStatsReport::percentageOfOk(_, percentageGood)
18
- |
19
- percentageGood < 95
+ MacroCallTargetStatsReport::percentageOfOk(_, percentageGood) and percentageGood < 50
20
)
21
}
22
0 commit comments