Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 7161b08

Browse files
committed
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.
1 parent 2f03ae6 commit 7161b08

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

src/test/regress/parallel_schedule

+5-2
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,15 @@ ignore: random
7878
# ----------
7979
# Another group of parallel tests
8080
# ----------
81-
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
81+
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
8282

8383
# ----------
8484
# Another group of parallel tests
8585
# ----------
86-
test: brin gin gist spgist privileges security_label collate matview lock replica_identity rowsecurity object_address
86+
test: brin gin gist spgist privileges security_label collate matview lock replica_identity object_address
87+
88+
# rowsecurity creates an event trigger, so don't run it in parallel
89+
test: rowsecurity
8790

8891
# ----------
8992
# Another group of parallel tests

src/test/regress/serial_schedule

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ test: collate
105105
test: matview
106106
test: lock
107107
test: replica_identity
108-
test: rowsecurity
109108
test: object_address
109+
test: rowsecurity
110110
test: alter_generic
111111
test: misc
112112
test: psql

0 commit comments

Comments
 (0)