We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fcd68bd + 14da5e6 commit 9bcc808Copy full SHA for 9bcc808
CHANGELOG.md
@@ -1,3 +1,5 @@
1
+* Fixed sometime panic on stats receive in query service
2
+
3
## v3.99.7
4
* Fixed not passing request context to topic event logs
5
* Fixed deadlock on closing table session with internal query session core
internal/query/result.go
@@ -169,7 +169,7 @@ func newResult(
169
170
r.lastPart = part
171
172
- if r.statsCallback != nil {
+ if part.GetExecStats() != nil && r.statsCallback != nil {
173
r.statsCallback(stats.FromQueryStats(part.GetExecStats()))
174
}
175
0 commit comments