Skip to content

Commit 8351053

Browse files
committed
Adjust parallel_schedule with event triggers on authenticated login
Event triggers on authenticated login could catch the connection of the concurrent test. In order to prevent this side effect we need to run the event_trigger test alone. Discussion: https://postgr.es/m/flat/CAMEv5_sS5G7K1PCV2oBx5+1NF1ZneJ6C5Z_xV_SWsZMukdFZiA@mail.gmail.com Author: Mikhail A. Gribkov Reviewed-by: Aleksander Alekseev
1 parent 8949b97 commit 8351053

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/test/regress/parallel_schedule

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -121,10 +121,12 @@ test: plancache limit plpgsql copy2 temp domain rangefuncs prepare conversion tr
121121
# ----------
122122
test: partition_join partition_prune reloptions hash_part indexing partition_aggregate partition_info tuplesort explain compression memoize stats
123123

124-
# event_trigger depends on create_am and cannot run concurrently with
125-
# any test that runs DDL
126-
# oidjoins is read-only, though, and should run late for best coverage
127-
test: event_trigger oidjoins
124+
# event_trigger cannot run concurrently with any other tests because
125+
# on-login event handling could catch connection of a concurrent test.
126+
test: event_trigger
127+
128+
# oidjoins should run late for best coverage
129+
test: oidjoins
128130

129131
# this test also uses event triggers, so likewise run it by itself
130132
test: fast_default

0 commit comments

Comments
 (0)