aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2003-02-19 04:06:28 +0000
committerBruce Momjian <bruce@momjian.us>2003-02-19 04:06:28 +0000
commitcde8bbc413d006b3534d42bd7a789e3820a95596 (patch)
tree5f09d3332504d6b8534ff6e573dfac5f05b336cd /src
parent747c6152fd390572bc8df7764b661e538fa1d658 (diff)
downloadpostgresql-cde8bbc413d006b3534d42bd7a789e3820a95596.tar.gz
postgresql-cde8bbc413d006b3534d42bd7a789e3820a95596.zip
This patch makes the following changes to the documentation:
- more work from the SGML police - some grammar improvements: rewriting a paragraph or two, replacing contractions where (IMHO) appropriate - fix missing utility commands in lock mode docs - improve CLUSTER, REINDEX, SET SESSION AUTHORIZATION ref pages Neil Conway
Diffstat (limited to 'src')
-rw-r--r--src/backend/catalog/index.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/catalog/index.c b/src/backend/catalog/index.c
index 5ccb70aee75..3533b24ca78 100644
--- a/src/backend/catalog/index.c
+++ b/src/backend/catalog/index.c
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.208 2002/12/15 16:17:38 tgl Exp $
+ * $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.209 2003/02/19 04:06:28 momjian Exp $
*
*
* INTERFACE ROUTINES
@@ -1894,8 +1894,8 @@ reindex_relation(Oid relid, bool force)
/*
* Ensure to hold an exclusive lock throughout the transaction. The
- * lock could be less intensive (in the non-overwrite path) but now
- * it's AccessExclusiveLock for simplicity.
+ * lock could be less intensive (in the non-overwrite path) but for
+ * now it's AccessExclusiveLock for simplicity.
*/
rel = heap_open(relid, AccessExclusiveLock);