Merge pull request #11869 from bboreham/log-query-error
TestConcurrentRangeQueries: log query with error
This commit is contained in:
commit
d792f9c566
|
@ -87,6 +87,7 @@ func TestConcurrentRangeQueries(t *testing.T) {
|
||||||
}
|
}
|
||||||
res := qry.Exec(context.Background())
|
res := qry.Exec(context.Background())
|
||||||
if res.Err != nil {
|
if res.Err != nil {
|
||||||
|
t.Logf("Query: %q, steps: %d, result: %s", c.expr, c.steps, res.Err)
|
||||||
return res.Err
|
return res.Err
|
||||||
}
|
}
|
||||||
qry.Close()
|
qry.Close()
|
||||||
|
|
Loading…
Reference in New Issue