]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Forgot to back-patch CLUSTER test fix to 8.4.
authorTom Lane <tgl@sss.pgh.pa.us>
Wed, 3 Feb 2010 06:36:16 +0000 (06:36 +0000)
committerTom Lane <tgl@sss.pgh.pa.us>
Wed, 3 Feb 2010 06:36:16 +0000 (06:36 +0000)
src/test/regress/expected/cluster.out
src/test/regress/sql/cluster.sql

index 23d0a3cd509ccc5ba0f54740cdb0732076d13a66..96bd8164fa4d19bf48c20b619213b492446dd976 100644 (file)
@@ -446,6 +446,7 @@ select * from clstr_temp;
     2 | two
 (2 rows)
 
+drop table clstr_temp;
 -- clean up
 \c -
 DROP TABLE clustertest;
index f3f7a248100975bbcc14f91d515e4c3dc89a1810..3dea2e4b2932a20f219f39abb3168bf943f193b2 100644 (file)
@@ -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 -