Skip to content

Commit 90d8e8f

Browse files
committed
Add debugging aid in isolationtester
1 parent a74a5f5 commit 90d8e8f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/isolation/isolationtester.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,8 +482,8 @@ run_permutation(TestSpec * testspec, int nsteps, Step ** steps)
482482

483483
if (!PQsendQuery(conns[1 + step->session], step->sql))
484484
{
485-
fprintf(stdout, "failed to send query: %s\n",
486-
PQerrorMessage(conns[1 + step->session]));
485+
fprintf(stdout, "failed to send query for step %s: %s\n",
486+
step->name, PQerrorMessage(conns[1 + step->session]));
487487
exit_nicely();
488488
}
489489

0 commit comments

Comments
 (0)