From: Bruce Momjian Date: Tue, 19 Nov 2002 17:39:00 +0000 (+0000) Subject: Update regression for ALL missing from CLUSTER. X-Git-Tag: REL7_4_BETA1~1529 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=988dbc58a2aae34a96de6a6c9bad597642d624eb;p=postgresql Update regression for ALL missing from CLUSTER. --- diff --git a/src/test/regress/expected/cluster.out b/src/test/regress/expected/cluster.out index f537f00a5c..105b4c8ec2 100644 --- a/src/test/regress/expected/cluster.out +++ b/src/test/regress/expected/cluster.out @@ -333,7 +333,7 @@ INSERT INTO clstr_3 VALUES (1); -- this user can only cluster clstr_1 and clstr_3, but the latter -- has not been clustered SET SESSION AUTHORIZATION clstr_user; -CLUSTER ALL; +CLUSTER; SELECT * FROM clstr_1 UNION ALL SELECT * FROM clstr_2 UNION ALL SELECT * FROM clstr_3; diff --git a/src/test/regress/sql/cluster.sql b/src/test/regress/sql/cluster.sql index dc05f9f363..57b80ba98b 100644 --- a/src/test/regress/sql/cluster.sql +++ b/src/test/regress/sql/cluster.sql @@ -125,7 +125,7 @@ INSERT INTO clstr_3 VALUES (1); -- this user can only cluster clstr_1 and clstr_3, but the latter -- has not been clustered SET SESSION AUTHORIZATION clstr_user; -CLUSTER ALL; +CLUSTER; SELECT * FROM clstr_1 UNION ALL SELECT * FROM clstr_2 UNION ALL SELECT * FROM clstr_3;