diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-03-16 23:18:08 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-03-16 23:18:08 -0400 |
commit | be6f9ea2eadc4d58ca6d338491f8451c90b5a369 (patch) | |
tree | 62731cdccdbd5c7a76a9b2185a80c7a2d6dfeccc | |
parent | e39f86fe000e64235801bb0fbeeade09dd562e1d (diff) | |
download | postgresql-be6f9ea2eadc4d58ca6d338491f8451c90b5a369.tar.gz postgresql-be6f9ea2eadc4d58ca6d338491f8451c90b5a369.zip |
Fix "pg_bench -C -M prepared".
This didn't work because when we dropped and re-established a database
connection, we did not bother to reset session-specific state such as
the statements-are-prepared flags.
The st->prepared[] array certainly needs to be flushed, and I cleared a
couple of other fields as well that couldn't possibly retain meaningful
state for a new connection.
In passing, fix some bogus comments and strange field order choices.
Per report from Robins Tharakan.
-rw-r--r-- | contrib/pgbench/pgbench.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/contrib/pgbench/pgbench.c b/contrib/pgbench/pgbench.c index ad4374feca0..d58f90638e1 100644 --- a/contrib/pgbench/pgbench.c +++ b/contrib/pgbench/pgbench.c @@ -178,7 +178,7 @@ typedef struct int state; /* state No. */ int cnt; /* xacts count */ int ecnt; /* error count */ - int listen; /* 0 indicates that an async query has been + int listen; /* 1 indicates that an async query has been * sent */ int sleeping; /* 1 indicates that the client is napping */ int64 until; /* napping until (usec) */ @@ -936,6 +936,11 @@ top: } INSTR_TIME_SET_CURRENT(end); INSTR_TIME_ACCUM_DIFF(*conn_time, end, start); + + /* Reset session-local state */ + st->listen = 0; + st->sleeping = 0; + memset(st->prepared, 0, sizeof(st->prepared)); } /* Record transaction start time if logging is enabled */ |