Fix "pg_bench -C -M prepared".

Tom Lane <tgl@sss.pgh.pa.us>

Commit: 1965a8ce1da1a8284530637b96115906722f1d03
Author: Tom Lane <tgl@sss.pgh.pa.us>
Date: 2016-03-17T03:18:08Z
Releases: 9.1.21
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.

Files

PathChange+/−
contrib/pgbench/pgbench.c modified +6 −1