mirror of
https://github.com/postgres/postgres.git
synced 2025-06-29 10:41:53 +03:00
Forgot to back-patch CLUSTER test fix to 8.4.
This commit is contained in:
@ -446,6 +446,7 @@ select * from clstr_temp;
|
|||||||
2 | two
|
2 | two
|
||||||
(2 rows)
|
(2 rows)
|
||||||
|
|
||||||
|
drop table clstr_temp;
|
||||||
-- clean up
|
-- clean up
|
||||||
\c -
|
\c -
|
||||||
DROP TABLE clustertest;
|
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');
|
insert into clstr_temp values (2, 'two'), (1, 'one');
|
||||||
cluster clstr_temp using clstr_temp_pkey;
|
cluster clstr_temp using clstr_temp_pkey;
|
||||||
select * from clstr_temp;
|
select * from clstr_temp;
|
||||||
|
drop table clstr_temp;
|
||||||
|
|
||||||
-- clean up
|
-- clean up
|
||||||
\c -
|
\c -
|
||||||
|
Reference in New Issue
Block a user