Skip to content

Commit 6d295b6

Browse files
committed
Fix random discrepancies between parallel_schedule and serial_schedule.
In particular, my previous patch expected the create_index test to run before the inherit test; but this was only true in the serial schedule. Rearrange this portion of the schedules to be more consistent. Per buildfarm results.
1 parent 57664ed commit 6d295b6

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

src/test/regress/parallel_schedule

+8-4
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,17 @@ test: create_function_2
5050
test: copy copyselect
5151

5252
# ----------
53-
# Another group of parallel tests
53+
# More groups of parallel tests
5454
# ----------
55-
test: constraints triggers create_misc create_aggregate create_operator inherit typed_table vacuum drop_if_exists create_cast
56-
57-
# Depends on the above
55+
test: create_misc create_operator
56+
# These depend on the above two
5857
test: create_index create_view
5958

59+
# ----------
60+
# Another group of parallel tests
61+
# ----------
62+
test: create_aggregate create_cast constraints triggers inherit typed_table vacuum drop_if_exists
63+
6064
# ----------
6165
# sanity_check does a vacuum, affecting the sort order of SELECT *
6266
# results. So it should not run parallel to other tests.

src/test/regress/serial_schedule

+6-6
Original file line numberDiff line numberDiff line change
@@ -50,20 +50,20 @@ test: create_function_1
5050
test: create_type
5151
test: create_table
5252
test: create_function_2
53-
test: create_cast
5453
test: copy
5554
test: copyselect
56-
test: constraints
57-
test: triggers
5855
test: create_misc
59-
test: create_aggregate
6056
test: create_operator
6157
test: create_index
62-
test: drop_if_exists
58+
test: create_view
59+
test: create_aggregate
60+
test: create_cast
61+
test: constraints
62+
test: triggers
6363
test: inherit
6464
test: typed_table
6565
test: vacuum
66-
test: create_view
66+
test: drop_if_exists
6767
test: sanity_check
6868
test: errors
6969
test: select

0 commit comments

Comments
 (0)