diff options
author | Neil Conway <neilc@samurai.com> | 2004-01-05 20:36:04 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2004-01-05 20:36:04 +0000 |
commit | 548523533f88052de364a8cf3cc269a0bb68783a (patch) | |
tree | 41c8474bc998a84fe75d8a61ebb225633c0a8730 /src | |
parent | 35b1fe122c70d4622c3bc19b06ba5952f1b1b62b (diff) | |
download | postgresql-548523533f88052de364a8cf3cc269a0bb68783a.tar.gz postgresql-548523533f88052de364a8cf3cc269a0bb68783a.zip |
Fix three trivial typos in comments.
Diffstat (limited to 'src')
-rw-r--r-- | src/backend/access/heap/heapam.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/access/heap/heapam.c b/src/backend/access/heap/heapam.c index 1815a0d9693..6f642c7e8e4 100644 --- a/src/backend/access/heap/heapam.c +++ b/src/backend/access/heap/heapam.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/access/heap/heapam.c,v 1.159 2003/12/14 00:34:47 neilc Exp $ + * $PostgreSQL: pgsql/src/backend/access/heap/heapam.c,v 1.160 2004/01/05 20:36:04 neilc Exp $ * * * INTERFACE ROUTINES @@ -146,7 +146,7 @@ heapgettup(Relation relation, elog(DEBUG2, "heapgettup: relation(%c)=`%s', %p", relation->rd_rel->relkind, RelationGetRelationName(relation), snapshot); -#endif /* !defined(HEAPLOGALL) */ +#endif /* HEAPDEBUGALL */ if (!ItemPointerIsValid(tid)) { @@ -1491,7 +1491,7 @@ l2: { TransactionId xwait = HeapTupleHeaderGetXmax(oldtup.t_data); - /* sleep untill concurrent transaction ends */ + /* sleep until concurrent transaction ends */ LockBuffer(buffer, BUFFER_LOCK_UNLOCK); XactLockTableWait(xwait); @@ -1816,7 +1816,7 @@ l3: { TransactionId xwait = HeapTupleHeaderGetXmax(tuple->t_data); - /* sleep untill concurrent transaction ends */ + /* sleep until concurrent transaction ends */ LockBuffer(*buffer, BUFFER_LOCK_UNLOCK); XactLockTableWait(xwait); |