Add support for quick eval count to the query runner (#2417)

* Add support for quick eval count to the query runner

This only adds support internally to the query runner,
without any UI support.

* Fix some tests
This commit is contained in:
Alexander Eyers-Taylor
2023-05-30 14:12:47 +01:00
committed by GitHub
parent af3be543f5
commit 22172d5d74
14 changed files with 77 additions and 25 deletions

View File

@@ -78,7 +78,11 @@ export async function runQuery({
const queryRun = queryRunner.createQueryRun(
databaseItem.databaseUri.fsPath,
{ queryPath: queryFile, quickEvalPosition: undefined },
{
queryPath: queryFile,
quickEvalPosition: undefined,
quickEvalCountOnly: false,
},
false,
getOnDiskWorkspaceFolders(),
extensionPacks,