8000 Fix three trivial typos in comments. · postgrespro/postgres_cluster@5485235 · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 5485235

Browse files
author
Neil Conway
committed
Fix three trivial typos in comments.
1 parent 35b1fe1 commit 5485235

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/backend/access/heap/heapam.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
*
1010
* IDENTIFICATION
11-
* $PostgreSQL: pgsql/src/backend/access/heap/heapam.c,v 1.159 2003/12/14 00:34:47 neilc Exp $
11+
* $PostgreSQL: pgsql/src/backend/access/heap/heapam.c,v 1.160 2004/01/05 20:36:04 neilc Exp $
1212
*
1313
*
1414
* INTERFACE ROUTINES
@@ -146,7 +146,7 @@ heapgettup(Relation relation,
146146
elog(DEBUG2, "heapgettup: relation(%c)=`%s', %p",
147147
relation->rd_rel->relkind, RelationGetRelationName(relation),
148148
snapshot);
149-
#endif /* !defined(HEAPLOGALL) */
149+
#endif /* HEAPDEBUGALL */
150150

151151
if (!ItemPointerIsValid(tid))
152152
{
@@ -1491,7 +1491,7 @@ heap_update(Relation relation, ItemPointer otid, HeapTuple newtup,
14911491
{
14921492
TransactionId xwait = HeapTupleHeaderGetXmax(oldtup.t_data);
14931493

1494-
/* sleep untill concurrent transaction ends */
1494+
/* sleep until concurrent transaction ends */
14951495
LockBuffer(buffer, BUFFER_LOCK_UNLOCK);
14961496
XactLockTableWait(xwait);
14971497

@@ -1816,7 +1816,7 @@ heap_mark4update(Relation relation, HeapTuple tuple, Buffer *buffer,
18161816
{
18171817
TransactionId xwait = HeapTupleHeaderGetXmax(tuple->t_data);
18181818

1819-
/* sleep untill concurrent transaction ends */
1819+
/* sleep until concurrent transaction ends */
18201820
LockBuffer(*buffer, BUFFER_LOCK_UNLOCK);
18211821
XactLockTableWait(xwait);
18221822

0 commit comments

Comments
 (0)
0