diff options
Diffstat (limited to 'src/test/isolation/README')
-rw-r--r-- | src/test/isolation/README | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/test/isolation/README b/src/test/isolation/README index dc96242883a..69095778c6c 100644 --- a/src/test/isolation/README +++ b/src/test/isolation/README @@ -49,8 +49,12 @@ subdirectory. A test specification consists of four parts, in this order: setup { <SQL> } The given SQL block is executed once, in one session only, before running - the test. Create any test tables or other required objects here. This - part is optional. + the test. Create any test tables or other required objects here. This + part is optional. Multiple setup blocks are allowed if needed; each is + run separately, in the given order. (The reason for allowing multiple + setup blocks is that each block is run as a single PQexec submission, + and some statements such as VACUUM cannot be combined with others in such + a block.) teardown { <SQL> } |