mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-17 19:30:00 +08:00
Fix minor bug in isolationtester.
If the lock wait query failed, isolationtester would report the PQerrorMessage from some other connection, meaning there would be no message or an unrelated one. This seems like a pretty unlikely occurrence, but if it did happen, this bug could make it really difficult/confusing to figure out what happened. That seems to justify patching all the way back. In passing, clean up another place where the "wrong" conn was used for an error report. That one's not actually buggy because it's a different alias for the same connection, but it's still confusing to the reader.
This commit is contained in:
parent
fb38d9a2e1
commit
7a1e7b291d
@ -600,7 +600,7 @@ run_permutation(TestSpec *testspec, int nsteps, Step **steps)
|
||||
if (!PQsendQuery(conn, step->sql))
|
||||
{
|
||||
fprintf(stdout, "failed to send query for step %s: %s\n",
|
||||
step->name, PQerrorMessage(conns[1 + step->session]));
|
||||
step->name, PQerrorMessage(conn));
|
||||
exit_nicely();
|
||||
}
|
||||
|
||||
@ -728,7 +728,7 @@ try_complete_step(Step *step, int flags)
|
||||
if (PQresultStatus(res) != PGRES_TUPLES_OK)
|
||||
{
|
||||
fprintf(stderr, "lock wait query failed: %s",
|
||||
PQerrorMessage(conn));
|
||||
PQerrorMessage(conns[0]));
|
||||
exit_nicely();
|
||||
}
|
||||
ntuples = PQntuples(res);
|
||||
|
Loading…
Reference in New Issue
Block a user