diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2003-03-10 22:28:22 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2003-03-10 22:28:22 +0000 |
commit | e4704001ea4c3d63b53e8783859ff598ef2f69e5 (patch) | |
tree | 56d282d342ead04fc43af4efc5a2eccffa3e27ed /src/backend/access | |
parent | 081fa240a119b67e28227439a3bf700340442787 (diff) | |
download | postgresql-e4704001ea4c3d63b53e8783859ff598ef2f69e5.tar.gz postgresql-e4704001ea4c3d63b53e8783859ff598ef2f69e5.zip |
This patch fixes a bunch of spelling mistakes in comments throughout the
PostgreSQL source code.
Neil Conway
Diffstat (limited to 'src/backend/access')
-rw-r--r-- | src/backend/access/gist/gist.c | 6 | ||||
-rw-r--r-- | src/backend/access/hash/hashovfl.c | 4 | ||||
-rw-r--r-- | src/backend/access/hash/hashstrat.c | 4 | ||||
-rw-r--r-- | src/backend/access/transam/xact.c | 6 |
4 files changed, 10 insertions, 10 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index 56a5c6fb603..cba57dc503f 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -8,7 +8,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.101 2003/02/24 00:57:17 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/gist/gist.c,v 1.102 2003/03/10 22:28:18 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -465,7 +465,7 @@ gistlayerinsert(Relation r, BlockNumber blkno, /* * After this call: 1. if child page was splited, then itup * contains keys for each page 2. if child page wasn't splited, - * then itup contains additional for adjustement of current key + * then itup contains additional for adjustment of current key */ ret = gistlayerinsert(r, nblkno, itup, len, res, giststate); @@ -551,7 +551,7 @@ gistlayerinsert(Relation r, BlockNumber blkno, ItemPointerSet(&((*res)->pointerData), blkno, l); if (*len > 1) - { /* previos insert ret & SPLITED != 0 */ + { /* previous insert ret & SPLITED != 0 */ int i; /* diff --git a/src/backend/access/hash/hashovfl.c b/src/backend/access/hash/hashovfl.c index b5198dbb1df..1e2df0aee08 100644 --- a/src/backend/access/hash/hashovfl.c +++ b/src/backend/access/hash/hashovfl.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.33 2002/06/20 20:29:24 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/hash/hashovfl.c,v 1.34 2003/03/10 22:28:18 tgl Exp $ * * NOTES * Overflow pages look like ordinary relation pages. @@ -452,7 +452,7 @@ _hash_initbitmap(Relation rel, /* * _hash_squeezebucket(rel, bucket) * - * Try to squeeze the tuples onto pages occuring earlier in the + * Try to squeeze the tuples onto pages occurring earlier in the * bucket chain in an attempt to free overflow pages. When we start * the "squeezing", the page from which we start taking tuples (the * "read" page) is the last bucket in the bucket chain and the page diff --git a/src/backend/access/hash/hashstrat.c b/src/backend/access/hash/hashstrat.c index 75133d69b88..4fc8667adad 100644 --- a/src/backend/access/hash/hashstrat.c +++ b/src/backend/access/hash/hashstrat.c @@ -1,14 +1,14 @@ /*------------------------------------------------------------------------- * * hashstrat.c - * Srategy map entries for the hash indexed access method + * Strategy map entries for the hash indexed access method * * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/hash/Attic/hashstrat.c,v 1.21 2002/06/20 20:29:24 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/hash/Attic/hashstrat.c,v 1.22 2003/03/10 22:28:18 tgl Exp $ * *------------------------------------------------------------------------- */ diff --git a/src/backend/access/transam/xact.c b/src/backend/access/transam/xact.c index 7150569a228..0506e4801a3 100644 --- a/src/backend/access/transam/xact.c +++ b/src/backend/access/transam/xact.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.141 2003/01/10 22:03:27 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/access/transam/xact.c,v 1.142 2003/03/10 22:28:18 tgl Exp $ * * NOTES * Transaction aborts can now occur two ways: @@ -91,7 +91,7 @@ * CommitTransactionBlock * AbortTransactionBlock * - * These are invoked only in responce to a user "BEGIN WORK", "COMMIT", + * These are invoked only in response to a user "BEGIN WORK", "COMMIT", * or "ROLLBACK" command. The tricky part about these functions * is that they are called within the postgres main loop, in between * the StartTransactionCommand() and CommitTransactionCommand(). @@ -236,7 +236,7 @@ static void *_RollbackData = NULL; * SetTransactionFlushEnabled() * * These are used to test and set the "TransactionFlushState" - * varable. If this variable is true (the default), then + * variable. If this variable is true (the default), then * the system will flush all dirty buffers to disk at the end * of each transaction. If false then we are assuming the * buffer pool resides in stable main memory, in which case we |