Remove references to new query server

This commit is contained in:
Koen Vlaswinkel
2023-12-22 16:51:21 +01:00
parent a6d9b6bbec
commit 767c3cc35c
3 changed files with 2 additions and 6 deletions

View File

@@ -70,10 +70,6 @@ export interface QuickEvalOptions {
quickEvalPos?: Position;
/**
* Whether to only count the number of results.
*
* This is only supported by the new query server
* but it isn't worth having a separate type and
* it is fine to have an ignored optional field.
*/
countOnly?: boolean;
}

View File

@@ -169,7 +169,7 @@ export class QueryServerClient extends DisposableObject {
private async startQueryServerImpl(
progressReporter: ProgressReporter,
): Promise<void> {
void this.logger.log("Starting NEW query server.");
void this.logger.log("Starting query server.");
const ramArgs = await this.cliServer.resolveRam(
this.config.queryMemoryMb,

View File

@@ -15,7 +15,7 @@ import { QueryResultType } from "../../../../src/query-server/messages";
import { ensureTestDatabase, getActivatedExtension } from "../../global.helper";
import { createMockApp } from "../../../__mocks__/appMock";
const baseDir = join(__dirname, "../../../test/data");
const baseDir = join(__dirname, "../../../../test/data");
const tmpDir = dirSync({
prefix: "query_test_",