8000 Fix random discrepancies between parallel_schedule and serial_schedule. · postwait/postgres@2e16d61 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2e16d61

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 7097e6c commit 2e16d61

File tree

2 files changed

+14
-10
lines changed

2 files changed

+14
-10
lines changed

src/test/regress/parallel_schedule

Lines changed: 8 additions & 4 deletions
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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,20 +49,20 @@ test: create_function_1
4949
test: create_type
5050
test: create_table
5151
test: create_function_2
52-
test: create_cast
5352
test: copy
5453
test: copyselect
55-
test: constraints
56-
test: triggers
5754
test: create_misc
58-
test: create_aggregate
5955
test: create_operator
6056
test: create_index
61-
test: drop_if_exists
57+
test: create_view
58+
test: create_aggregate
59+
test: create_cast
60+
test: constraints
61+
test: triggers
6262
test: inherit
6363
test: typed_table
6464
test: vacuum
65-
test: create_view
65+
test: drop_if_exists
6666
test: sanity_check
6767
test: errors
6868
test: select

0 commit comments

Comments
 (0)
0