Forgot to back-patch CLUSTER test fix to 8.4.

REL8_4_STABLE
Tom Lane 16 years ago
parent 8f13ee63cb
commit 4204ff3363
  1. 1
      src/test/regress/expected/cluster.out
  2. 1
      src/test/regress/sql/cluster.sql

@ -446,6 +446,7 @@ select * from clstr_temp;
2 | two
(2 rows)
drop table clstr_temp;
-- clean up
\c -
DROP TABLE clustertest;

@ -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 -

Loading…
Cancel
Save