parallel_schedule 5.3 KB
Newer Older
1
# ----------
2
# src/test/regress/parallel_schedule
3 4 5 6 7
#
# By convention, we put no more than twenty tests in any one parallel group;
# this limits the number of connections needed to run the tests.
# ----------

8 9 10 11 12
# run tablespace by itself, and first, because it forces a checkpoint;
# we'd prefer not to have checkpoints later in the tests because that
# interferes with crash-recovery testing.
test: tablespace

13
# ----------
14
# The first group of parallel tests
15
# ----------
16
test: boolean char name varchar text int2 int4 int8 oid float4 float8 bit numeric txid uuid enum money rangetypes pg_lsn regproc
17 18 19 20 21 22 23

# Depends on things setup during char, varchar and text
test: strings
# Depends on int2, int4, int8, float4, float8
test: numerology

# ----------
24
# The second group of parallel tests
25
# ----------
P
Peter Eisentraut 已提交
26
test: point lseg line box path polygon circle date time timetz timestamp timestamptz interval abstime reltime tinterval inet macaddr tstypes comments
27

28 29 30 31 32
# ----------
# Another group of parallel tests
# geometry depends on point, lseg, box, path, polygon and circle
# horology depends on interval, timetz, timestamp, timestamptz, reltime and abstime
# ----------
33
test: geometry horology regex oidjoins type_sanity opr_sanity
34 35 36 37

# ----------
# These four each depend on the previous one
# ----------
B
Bruce Momjian 已提交
38
test: insert
39 40 41 42 43 44 45 46 47 48 49
test: create_function_1
test: create_type
test: create_table
test: create_function_2

# ----------
# Load huge amounts of data
# We should split the data files into single files and then
# execute two copy tests parallel, to check that copy itself
# is concurrent safe.
# ----------
50
test: copy copyselect
51 52

# ----------
53
# More groups of parallel tests
54
# ----------
55 56
test: create_misc create_operator
# These depend on the above two
57
test: create_index create_view
58 59
# Depends on things setup for create_index
test: gp_gin_index
60

R
Richard Guo 已提交
61
test: inherit
62

X
xiong-gang 已提交
63
test: triggers
64

65 66 67
# ----------
# Another group of parallel tests
# ----------
68
test: create_aggregate create_function_3 create_cast constraints create_table_like typed_table vacuum drop_if_exists  updatable_views
R
Richard Guo 已提交
69 70 71 72 73 74

# ----------
# Because vacuum will detect concurrently running transactions, it is necessary to
# run this test on its own, or it might not detect the pages are 'all visible'
# ----------
test: vacuum_stats
75 76 77 78

# ----------
# sanity_check does a vacuum, affecting the sort order of SELECT *
# results. So it should not run parallel to other tests.
79 80
#
# Disabled in GPDB. FIXME: why?
81
# ----------
82
#test: sanity_check
83 84 85 86 87 88 89

# ----------
# Believe it or not, select creates a table, subsequent
# tests need.
# ----------
test: errors
test: select
T
Tom Lane 已提交
90
ignore: random
91 92

# ----------
93
# Another group of parallel tests
94
# ----------
95
test: select_into select_distinct select_distinct_on select_implicit select_having subselect union case join aggregates random portals arrays btree_index hash_index update delete
96 97 98 99 100 101 102 103 104 105 106

# In PostgreSQL, namespace test is run as part of the fourth group, but there
# are some GPDB additions in it that will show diff if concurrent tests use
# temporary tables. So run it separately.
test: namespace

# 2-phase commit is not supported by GPDB.
#test: prepared_xacts

# The 'transactions' test is disabled in GPDB, because it uses functions
# in segments in a way that doesn't work:
107
# ERROR:  function cannot execute on a QE slice because it accesses relation "public.xacttest"
108
#test: transactions
109

110 111 112
# ----------
# Another group of parallel tests
# ----------
113
test: privileges security_label collate lock replica_identity
114

115
# MATERIALIZED_VIEW_FIXME : matview is not supported on greenplum. Enable the test when the feature is ready.
116
#test: matview
117 118 119 120

# ----------
# Another group of parallel tests
# ----------
121
test: alter_generic misc psql async
122

123
# rules cannot run concurrently with any test that creates a view
124
#
125 126 127
# 'rules' test is disabled in GPDB. Maintaining the list of views in it is
# too painful, and there are also errors because of cross-segment UPDATEs
# and functions.
128 129 130 131
#
# GPDB_84_MERGE_FIXME: While disabling this was not really an effect of the 8.4
# merge, it was done a long time ago, it's time to revisit this so we can re-
# enable it
132
#test: rules
133
# event triggers cannot run concurrently with any test that runs DDL
H
Heikki Linnakangas 已提交
134
test: event_trigger
135

136
# ----------
137
# Another group of parallel tests
138
# ----------
139
test: select_views portals_p2 cluster dependency guc bitmapops tsearch tsdicts foreign_data window xmlmap functional_deps advisory_lock json jsonb json_encoding indirect_toast equivclass
140

141 142 143 144 145 146 147
# Output of the 'combocid' test contains ctid and cmin values, which will
# differ depending on how many segments are used. Hence disabled in GPDB.
#test: combocid

# 'foreign_key' test is disabled, because it contains several tables with
# multiple UNIQUE constraints, which is not supported in GPDB.
#test: foreign_key
148 149

# ----------
150
# Another group of parallel tests
151 152
# NB: temp.sql does a reconnect which transiently uses 2 connections,
# so keep this parallel group to at most 19 tests
153
# ----------
154
test: plancache limit plpgsql copy2 temp domain rangefuncs prepare without_oid conversion truncate alter_table alter_extension sequence polymorphism rowtypes returning with xml gp_foreign_data
155

D
David Kimura 已提交
156
# large objects are not supported by GPDB
157 158
# test: largeobject

159
# run stats by itself because its delay may be insufficient under heavy load
160 161 162 163 164
#
# 'stats' test has been disabled in GPDB, because it tries to set stats-related
# GUCs stats_block_level and stats_row_level, which have been removed from
# GPDB.
#test: stats