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

@@ -38,7 +38,7 @@ export interface IExecutionPlanInfo {
}
export interface IQueryInfo {
range: IRange[];
batchRanges: IRange[];
messages: IQueryMessage[];
}