Skip to content

Commit ab35550

Browse files
committed
Don't call bqrsInfo with a page size of 0
1 parent f0170e2 commit ab35550

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/ql-vscode/src/run-queries-shared.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@ export class QueryEvaluationInfo extends QueryOutputDir {
244244
*/
245245
async chooseResultSet(cliServer: CodeQLCliServer) {
246246
const resultSets = (
247-
await cliServer.bqrsInfo(this.resultsPaths.resultsPath, 0)
247+
await cliServer.bqrsInfo(this.resultsPaths.resultsPath)
248248
)["result-sets"];
249249
if (!resultSets.length) {
250250
return undefined;

0 commit comments

Comments
 (0)