From: Tom Lane Date: Wed, 3 Feb 2010 06:36:16 +0000 (+0000) Subject: Forgot to back-patch CLUSTER test fix to 8.4. X-Git-Tag: REL8_4_3~50 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4204ff3363c9ee56f1657df465022e1a4b764ff5;p=thirdparty%2Fpostgresql.git Forgot to back-patch CLUSTER test fix to 8.4. --- diff --git a/src/test/regress/expected/cluster.out b/src/test/regress/expected/cluster.out index 23d0a3cd509..96bd8164fa4 100644 --- a/src/test/regress/expected/cluster.out +++ b/src/test/regress/expected/cluster.out @@ -446,6 +446,7 @@ select * from clstr_temp; 2 | two (2 rows) +drop table clstr_temp; -- clean up \c - DROP TABLE clustertest; diff --git a/src/test/regress/sql/cluster.sql b/src/test/regress/sql/cluster.sql index f3f7a248100..3dea2e4b293 100644 --- a/src/test/regress/sql/cluster.sql +++ b/src/test/regress/sql/cluster.sql @@ -192,6 +192,7 @@ create temp table clstr_temp (col1 int primary key, col2 text); insert into clstr_temp values (2, 'two'), (1, 'one'); cluster clstr_temp using clstr_temp_pkey; select * from clstr_temp; +drop table clstr_temp; -- clean up \c -