diff options
author | Tom Lane | 2007-03-19 16:44:41 +0000 |
---|---|---|
committer | Tom Lane | 2007-03-19 16:44:41 +0000 |
commit | e28e318c6509742ac11802397771b37561953389 (patch) | |
tree | 054a6ac19ad99d97abcd7d3aca6113c6bbec74a5 | |
parent | 9bc933b2125a5358722490acbc50889887bf7680 (diff) |
Further buildfarm experience shows that actually we can't run the plancache
test in parallel with the rules test at all, because the former wants to
create a couple of temp views, which can sometimes show up in the latter's
output. Let's try it in the next parallel group instead.
-rw-r--r-- | src/test/regress/parallel_schedule | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/regress/parallel_schedule b/src/test/regress/parallel_schedule index 35ebff85895..d25ed4c8cad 100644 --- a/src/test/regress/parallel_schedule +++ b/src/test/regress/parallel_schedule @@ -1,6 +1,6 @@ # ---------- # The first group of parallel test -# $PostgreSQL: pgsql/src/test/regress/parallel_schedule,v 1.40 2007/03/13 00:33:44 tgl Exp $ +# $PostgreSQL: pgsql/src/test/regress/parallel_schedule,v 1.41 2007/03/19 16:44:41 tgl Exp $ # ---------- test: boolean char name varchar text int2 int4 int8 oid float4 float8 bit numeric uuid @@ -69,13 +69,13 @@ test: misc # ---------- # The fifth group of parallel test # ---------- -test: select_views portals_p2 rules foreign_key cluster dependency guc combocid plancache +test: select_views portals_p2 rules foreign_key cluster dependency guc combocid # ---------- # The sixth group of parallel test # ---------- -# "plpgsql" cannot run concurrently with "rules" -test: limit plpgsql copy2 temp domain rangefuncs prepare without_oid conversion truncate alter_table sequence polymorphism rowtypes returning largeobject xml +# "plpgsql" cannot run concurrently with "rules", nor can "plancache" +test: plancache limit plpgsql copy2 temp domain rangefuncs prepare without_oid conversion truncate alter_table sequence polymorphism rowtypes returning largeobject xml # run stats by itself because its delay may be insufficient under heavy load test: stats |