File tree Expand file tree Collapse file tree 3 files changed +2
-6
lines changed
test/vscode-tests/cli-integration/query-server Expand file tree Collapse file tree 3 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -70,10 +70,6 @@ export interface QuickEvalOptions {
7070 quickEvalPos ?: Position ;
7171 /**
7272 * Whether to only count the number of results.
73- *
74- * This is only supported by the new query server
75- * but it isn't worth having a separate type and
76- * it is fine to have an ignored optional field.
7773 */
7874 countOnly ?: boolean ;
7975}
Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ export class QueryServerClient extends DisposableObject {
169169 private async startQueryServerImpl (
170170 progressReporter : ProgressReporter ,
171171 ) : Promise < void > {
172- void this . logger . log ( "Starting NEW query server." ) ;
172+ void this . logger . log ( "Starting query server." ) ;
173173
174174 const ramArgs = await this . cliServer . resolveRam (
175175 this . config . queryMemoryMb ,
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ import { QueryResultType } from "../../../../src/query-server/messages";
1515import { ensureTestDatabase , getActivatedExtension } from "../../global.helper" ;
1616import { createMockApp } from "../../../__mocks__/appMock" ;
1717
18- const baseDir = join ( __dirname , "../../../test/data" ) ;
18+ const baseDir = join ( __dirname , "../../../../ test/data" ) ;
1919
2020const tmpDir = dirSync ( {
2121 prefix : "query_test_" ,
You can’t perform that action at this time.
0 commit comments