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.
2 parents e25b2b1 + 056b919 commit 655a734Copy full SHA for 655a734
extensions/ql-vscode/src/log-insights/performance-comparison.ts
@@ -151,6 +151,10 @@ export class PerformanceOverviewScanner implements EvaluationLogScanner {
151
for (let i = 0, length = counts.length; i < length; ++i) {
152
// TODO: possibly exclude unions here
153
const count = counts[i];
154
+ if (count < 0) {
155
+ // Empty RA lines have a tuple count of -1. Do not count them when aggregating.
156
+ continue;
157
+ }
158
totalTuples += count;
159
totalTuplesPerStep[i] += count;
160
}
0 commit comments