diff options
| author | Kevin Grittner <kgrittn@postgresql.org> | 2012-09-04 19:31:06 -0500 |
|---|---|---|
| committer | Kevin Grittner <kgrittn@postgresql.org> | 2012-09-04 19:31:06 -0500 |
| commit | c63f309cca07c0570494a8f36092633635990db8 (patch) | |
| tree | e360908023c755b9d77395c13f7082ea661c6f7e /src/test/isolation/isolationtester.h | |
| parent | 63f1ccd838a19e4a0923221b2f90e4e014cabf74 (diff) | |
| download | postgresql-c63f309cca07c0570494a8f36092633635990db8.tar.gz | |
Allow isolation tests to specify multiple setup blocks.
Each setup block is run as a single PQexec submission, and some
statements such as VACUUM cannot be combined with others in such a
block.
Backpatch to 9.2.
Kevin Grittner and Tom Lane
Diffstat (limited to 'src/test/isolation/isolationtester.h')
| -rw-r--r-- | src/test/isolation/isolationtester.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/isolation/isolationtester.h b/src/test/isolation/isolationtester.h index 1f61c6f127..4c986bb523 100644 --- a/src/test/isolation/isolationtester.h +++ b/src/test/isolation/isolationtester.h @@ -42,7 +42,8 @@ typedef struct typedef struct { - char *setupsql; + char **setupsqls; + int nsetupsqls; char *teardownsql; Session **sessions; int nsessions; |
