aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-07-12 20:35:54 +0000
committerBruce Momjian <bruce@momjian.us>2001-07-12 20:35:54 +0000
commit249ecff611fad6b833b903c142ae50d65efb301f (patch)
tree51fff56066b06c7c278f47fc57d519ca424041af /src
parentbc26c83ca97c574620a376489a572d7f97cf4988 (diff)
downloadpostgresql-249ecff611fad6b833b903c142ae50d65efb301f.tar.gz
postgresql-249ecff611fad6b833b903c142ae50d65efb301f.zip
indicies to indexes from Neil Conway
Diffstat (limited to 'src')
-rw-r--r--src/backend/commands/cluster.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/commands/cluster.c b/src/backend/commands/cluster.c
index a087012a515..e72d13897dc 100644
--- a/src/backend/commands/cluster.c
+++ b/src/backend/commands/cluster.c
@@ -15,7 +15,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.66 2001/06/22 19:16:21 wieck Exp $
+ * $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.67 2001/07/12 20:35:54 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -45,13 +45,13 @@ static void rebuildheap(Oid OIDNewHeap, Oid OIDOldHeap, Oid OIDOldIndex);
* cluster
*
* STILL TO DO:
- * Create a list of all the other indicies on this relation. Because
+ * Create a list of all the other indexes on this relation. Because
* the cluster will wreck all the tids, I'll need to destroy bogus
- * indicies. The user will have to re-create them. Not nice, but
+ * indexes. The user will have to re-create them. Not nice, but
* I'm not a nice guy. The alternative is to try some kind of post
* destroy re-build. This may be possible. I'll check out what the
* index create functiond want in the way of paramaters. On the other
- * hand, re-creating n indicies may blow out the space.
+ * hand, re-creating n indexes may blow out the space.
*/
void
cluster(char *oldrelname, char *oldindexname)