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 370b17c commit 8b8d174Copy full SHA for 8b8d174
extensions/ql-vscode/src/query-history/query-history-manager.ts
@@ -689,14 +689,12 @@ export class QueryHistoryManager extends DisposableObject {
689
singleItem: QueryHistoryInfo,
690
multiSelect: QueryHistoryInfo[] | undefined,
691
) {
692
- // TODO: reduce duplication with 'handleCompareWith'
693
multiSelect ||= [singleItem];
694
695
if (
696
!this.isSuccessfulCompletedLocalQueryInfo(singleItem) ||
697
!multiSelect.every(this.isSuccessfulCompletedLocalQueryInfo)
698
699
- // TODO: support performance comparison with partially-evaluated query (technically possible)
700
throw new Error(
701
"Please only select local queries that have completed successfully.",
702
);
0 commit comments