We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 284e081 commit 5094367Copy full SHA for 5094367
query.go
@@ -18,6 +18,9 @@ func (e *QueryError) Error() string {
18
if e.Message != "" {
19
text += fmt.Sprintf(", message: %s", e.Message)
20
}
21
+ if e.Detail != "" {
22
+ text += fmt.Sprintf(", datail: %s", e.Detail)
23
+ }
24
if e.Kind != "" {
25
text += fmt.Sprintf(", kind: %s", e.Kind)
26
0 commit comments