summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
authorTom Lane2002-12-30 18:42:17 +0000
committerTom Lane2002-12-30 18:42:17 +0000
commita03c0d93d5a2730f25a3b2738300dacd8ca5e24a (patch)
tree0c1aef0f6bbdfb167b3bb75d5b153cd5710bd196 /src/test
parent2e1f2c3109b43138ef32dbdba09abef7c9c51d5a (diff)
Code review for CLUSTER ALL patch. Fix bogus locking, incorrect transaction
stop/start nesting, other infelicities.
Diffstat (limited to 'src/test')
-rw-r--r--src/test/regress/expected/cluster.out2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/expected/cluster.out b/src/test/regress/expected/cluster.out
index 105b4c8ec21..48daf0fc25d 100644
--- a/src/test/regress/expected/cluster.out
+++ b/src/test/regress/expected/cluster.out
@@ -304,7 +304,7 @@ INSERT INTO clstr_3 VALUES (2);
INSERT INTO clstr_3 VALUES (1);
-- "CLUSTER <tablename>" on a table that hasn't been clustered
CLUSTER clstr_2;
-ERROR: CLUSTER: No previously clustered index found on table clstr_2
+ERROR: CLUSTER: No previously clustered index found on table "clstr_2"
CLUSTER clstr_1_pkey ON clstr_1;
CLUSTER clstr_2_pkey ON clstr_2;
SELECT * FROM clstr_1 UNION ALL