diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2014-12-31 17:04:27 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2014-12-31 17:04:27 -0500 |
commit | 7161b082bd9fc51e67a1031ea9d0313e8a48286b (patch) | |
tree | 0d4545084bb5b02c98118e500c7436e8b82e69a7 /src | |
parent | 2f03ae69875ff27a9667a7ec4655434900b64e55 (diff) | |
download | postgresql-7161b082bd9fc51e67a1031ea9d0313e8a48286b.tar.gz postgresql-7161b082bd9fc51e67a1031ea9d0313e8a48286b.zip |
Don't run rowsecurity in parallel with other regression tests.
The short-lived event trigger in the rowsecurity test causes irreproducible
failures when the concurrent tests do something that the event trigger
can't cope with. Per buildfarm.
Diffstat (limited to 'src')
-rw-r--r-- | src/test/regress/parallel_schedule | 7 | ||||
-rw-r--r-- | src/test/regress/serial_schedule | 2 |
2 files changed, 6 insertions, 3 deletions
diff --git a/src/test/regress/parallel_schedule b/src/test/regress/parallel_schedule index e0ae2f2b01d..62ef6ecb8c6 100644 --- a/src/test/regress/parallel_schedule +++ b/src/test/regress/parallel_schedule @@ -78,12 +78,15 @@ ignore: random # ---------- # Another group of parallel tests # ---------- -test: select_into select_distinct select_distinct_on select_implicit select_having subselect union case join aggregates transactions random portals arrays btree_index hash_index update namespace prepared_xacts delete +test: select_into select_distinct select_distinct_on select_implicit select_having subselect union case join aggregates transactions random portals arrays btree_index hash_index update delete namespace prepared_xacts # ---------- # Another group of parallel tests # ---------- -test: brin gin gist spgist privileges security_label collate matview lock replica_identity rowsecurity object_address +test: brin gin gist spgist privileges security_label collate matview lock replica_identity object_address + +# rowsecurity creates an event trigger, so don't run it in parallel +test: rowsecurity # ---------- # Another group of parallel tests diff --git a/src/test/regress/serial_schedule b/src/test/regress/serial_schedule index 7f762bd08fd..b491b9768dc 100644 --- a/src/test/regress/serial_schedule +++ b/src/test/regress/serial_schedule @@ -105,8 +105,8 @@ test: collate test: matview test: lock test: replica_identity -test: rowsecurity test: object_address +test: rowsecurity test: alter_generic test: misc test: psql |