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 12a342e commit 833f679Copy full SHA for 833f679
extensions/ql-vscode/src/log-insights/performance-comparison.ts
@@ -144,9 +144,12 @@ export class PerformanceOverviewScanner implements EvaluationLogScanner {
144
break;
145
}
146
case "SENTINEL_EMPTY": {
147
- this.data.sentinelEmptyIndices.push(
148
- this.getPredicateIndex(predicateName, raHash),
149
- );
+ const index = this.getPredicateIndex(predicateName, raHash);
+ this.data.sentinelEmptyIndices.push(index);
+ const sentinelIndex = this.raToIndex.get(event.sentinelRaHash);
150
+ if (sentinelIndex != null) {
151
+ this.data.dependencyLists[index].push(sentinelIndex); // needed for matching up cache hits
152
+ }
153
154
155
case "COMPUTE_RECURSIVE":
0 commit comments