From ab35550816cf7a1058c02e18aee904a25a4061fd Mon Sep 17 00:00:00 2001 From: Alexander Eyers-Taylor Date: Tue, 10 Dec 2024 12:29:26 +0000 Subject: [PATCH] Don't call bqrsInfo with a page size of 0 --- extensions/ql-vscode/src/run-queries-shared.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/ql-vscode/src/run-queries-shared.ts b/extensions/ql-vscode/src/run-queries-shared.ts index 6dbaa8e651b..dac447ee20b 100644 --- a/extensions/ql-vscode/src/run-queries-shared.ts +++ b/extensions/ql-vscode/src/run-queries-shared.ts @@ -244,7 +244,7 @@ export class QueryEvaluationInfo extends QueryOutputDir { */ async chooseResultSet(cliServer: CodeQLCliServer) { const resultSets = ( - await cliServer.bqrsInfo(this.resultsPaths.resultsPath, 0) + await cliServer.bqrsInfo(this.resultsPaths.resultsPath) )["result-sets"]; if (!resultSets.length) { return undefined;