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 4068af9 + ceeaf4d commit 22bd493Copy full SHA for 22bd493
CHANGELOG.md
@@ -1,3 +1,5 @@
1
+* Fixed panic on span reporting in `xsql/Tx`
2
+
3
## v3.95.5
4
* Fixed goroutine leak on failed execute call in query client
5
internal/xsql/legacy/tx.go
@@ -20,6 +20,10 @@ type transaction struct {
20
}
21
22
func (tx *transaction) ID() string {
23
+ if tx.tx == nil {
24
+ return ""
25
+ }
26
27
return tx.tx.ID()
28
29
internal/xsql/tx.go
@@ -18,6 +18,10 @@ type Tx struct {
18
19
func (tx *Tx) ID() string {
0 commit comments