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

@@ -15,7 +15,7 @@ export namespace QueryInfo {
}
return {
messages: queryInfo.messages,
range: queryInfo.range.map(r => typeConverters.Range.to(r))
batchRanges: queryInfo.batchRanges.map(r => typeConverters.Range.to(r))
};
}
}