Skip to content

Commit 3230e69

Browse files
authored
Merge pull request #4141 from github/nickrolfe/quickeval-fix
Don't attempt to interpret results when running quick-eval
2 parents eee7f3b + a2a27c3 commit 3230e69

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

extensions/ql-vscode/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- Add new command "CodeQL: Trim Overlay Base Cache" that returns a database to the state prior to overlay evaluation, leaving only base predicates and types that may later be referenced during overlay evaluation. [#4082](https://github.com/github/vscode-codeql/pull/4082)
66
- Remove support for CodeQL CLI versions older than 2.19.4. [#4108](https://github.com/github/vscode-codeql/pull/4108)
7+
- Fix a bug where quick evaluation within a `.ql` file could cause spurious errors about processing query metadata. [#4141](https://github.com/github/vscode-codeql/pull/4141)
78

89
## 1.17.4 - 10 July 2025
910

extensions/ql-vscode/src/local-queries/local-query-run.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export class LocalQueryRun {
188188
result.outputBaseName,
189189
this.dbItem.databaseUri.fsPath,
190190
await this.dbItem.hasMetadataFile(),
191-
undefined,
191+
this.queryInfo.initialInfo.quickEvalPosition,
192192
metadata,
193193
);
194194

0 commit comments

Comments
 (0)