We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37dcd08 commit 370b17cCopy full SHA for 370b17c
1 file changed
extensions/ql-vscode/src/log-insights/performance-comparison.ts
@@ -51,8 +51,6 @@ export interface PerformanceComparisonDataFromLog {
51
52
/**
53
* All the pipeline runs seen for the `i`th predicate from the `names` array.
54
- *
55
- * TODO: replace with more compact representation
56
*/
57
pipelineSummaryList: Array<Record<string, PipelineSummary>>;
58
}
@@ -161,7 +159,6 @@ export class PerformanceOverviewScanner implements EvaluationLogScanner {
161
159
});
162
160
const { counts: totalTuplesPerStep } = pipelineSummary;
163
for (let i = 0, length = counts.length; i < length; ++i) {
164
- // TODO: possibly exclude unions here
165
const count = counts[i];
166
if (count < 0) {
167
// Empty RA lines have a tuple count of -1. Do not count them when aggregating.
0 commit comments