QueryEvent range -> batchRanges (#19890)

* Switch query events to just send ranges instead of full query text

* undo azdata changes

* fix type

* comment + remove unneeded ?

* range -> batchRanges

* undo
This commit is contained in:
Charles Gagnon
2022-06-29 11:28:09 -07:00
committed by GitHub
parent f3b40059fc
commit bb20ea0e92
5 changed files with 15 additions and 15 deletions

View File

@@ -1568,7 +1568,7 @@ declare module 'azdata' {
/**
* The ranges for each batch that has executed so far
*/
range: vscode.Range[];
batchRanges: vscode.Range[];
}
export interface QueryEventListener {