diff options
author | Bruce Momjian <bruce@momjian.us> | 2002-11-18 17:12:07 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2002-11-18 17:12:07 +0000 |
commit | c4501ec55142c9651c60baa5bcfa674500988f69 (patch) | |
tree | ac1f68d99f05d8b5e8ca1af520ebc429fe65189a /src/backend/commands/cluster.c | |
parent | 72cf68138347c3d68b1652ca6c5f0994840ab361 (diff) | |
download | postgresql-c4501ec55142c9651c60baa5bcfa674500988f69.tar.gz postgresql-c4501ec55142c9651c60baa5bcfa674500988f69.zip |
Remove ALL from CLUSTER ALL. Use just CLUSTER.
Diffstat (limited to 'src/backend/commands/cluster.c')
-rw-r--r-- | src/backend/commands/cluster.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/cluster.c b/src/backend/commands/cluster.c index db78a179b69..1e5a11220c6 100644 --- a/src/backend/commands/cluster.c +++ b/src/backend/commands/cluster.c @@ -11,7 +11,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.94 2002/11/15 03:09:35 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.95 2002/11/18 17:12:07 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -728,7 +728,7 @@ cluster(ClusterStmt *stmt) *rvs; /* - * We cannot run CLUSTER ALL inside a user transaction block; if we were inside + * We cannot run CLUSTER inside a user transaction block; if we were inside * a transaction, then our commit- and start-transaction-command calls * would not have the intended effect! */ |