Remove references to new query server
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
@@ -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,
|
||||
|
||||
@@ -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_",
|
||||
|
||||
Reference in New Issue
Block a user