Skip to content

Commit f639df0

Browse files
committed
Small comment spacing improvement.
1 parent d6fda1b commit f639df0

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

src/backend/access/transam/slru.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
4242
* Portions Copyright (c) 1994, Regents of the University of California
4343
*
44-
* $PostgreSQL: pgsql/src/backend/access/transam/slru.c,v 1.42 2007/11/15 23:23:44 momjian Exp $
44+
* $PostgreSQL: pgsql/src/backend/access/transam/slru.c,v 1.43 2007/11/16 01:51:22 momjian Exp $
4545
*
4646
*-------------------------------------------------------------------------
4747
*/
@@ -339,7 +339,7 @@ SimpleLruWaitIO(SlruCtl ctl, int slotno)
339339
/* indeed, the I/O must have failed */
340340
if (shared->page_status[slotno] == SLRU_PAGE_READ_IN_PROGRESS)
341341
shared->page_status[slotno] = SLRU_PAGE_EMPTY;
342-
else /* write_in_progress */
342+
else /* write_in_progress */
343343
{
344344
shared->page_status[slotno] = SLRU_PAGE_VALID;
345345
shared->page_dirty[slotno] = true;

src/backend/commands/trigger.c

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
99
* IDENTIFICATION
10-
* $PostgreSQL: pgsql/src/backend/commands/trigger.c,v 1.223 2007/11/15 23:23:44 momjian Exp $
10+
* $PostgreSQL: pgsql/src/backend/commands/trigger.c,v 1.224 2007/11/16 01:51:22 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -1638,7 +1638,7 @@ ExecBSInsertTriggers(EState *estate, ResultRelInfo *relinfo)
16381638
trigger->tgenabled == TRIGGER_DISABLED)
16391639
continue;
16401640
}
1641-
else /* ORIGIN or LOCAL role */
1641+
else /* ORIGIN or LOCAL role */
16421642
{
16431643
if (trigger->tgenabled == TRIGGER_FIRES_ON_REPLICA ||
16441644
trigger->tgenabled == TRIGGER_DISABLED)
@@ -1697,7 +1697,7 @@ ExecBRInsertTriggers(EState *estate, ResultRelInfo *relinfo,
16971697
trigger->tgenabled == TRIGGER_DISABLED)
16981698
continue;
16991699
}
1700-
else /* ORIGIN or LOCAL role */
1700+
else /* ORIGIN or LOCAL role */
17011701
{
17021702
if (trigger->tgenabled == TRIGGER_FIRES_ON_REPLICA ||
17031703
trigger->tgenabled == TRIGGER_DISABLED)
@@ -1769,7 +1769,7 @@ ExecBSDeleteTriggers(EState *estate, ResultRelInfo *relinfo)
17691769
trigger->tgenabled == TRIGGER_DISABLED)
17701770
continue;
17711771
}
1772-
else /* ORIGIN or LOCAL role */
1772+
else /* ORIGIN or LOCAL role */
17731773
{
17741774
if (trigger->tgenabled == TRIGGER_FIRES_ON_REPLICA ||
17751775
trigger->tgenabled == TRIGGER_DISABLED)
@@ -1835,7 +1835,7 @@ ExecBRDeleteTriggers(EState *estate, ResultRelInfo *relinfo,
18351835
trigger->tgenabled == TRIGGER_DISABLED)
18361836
continue;
18371837
}
1838-
else /* ORIGIN or LOCAL role */
1838+
else /* ORIGIN or LOCAL role */
18391839
{
18401840
if (trigger->tgenabled == TRIGGER_FIRES_ON_REPLICA ||
18411841
trigger->tgenabled == TRIGGER_DISABLED)
@@ -1920,7 +1920,7 @@ ExecBSUpdateTriggers(EState *estate, ResultRelInfo *relinfo)
19201920
trigger->tgenabled == TRIGGER_DISABLED)
19211921
continue;
19221922
}
1923-
else /* ORIGIN or LOCAL role */
1923+
else /* ORIGIN or LOCAL role */
19241924
{
19251925
if (trigger->tgenabled == TRIGGER_FIRES_ON_REPLICA ||
19261926
trigger->tgenabled == TRIGGER_DISABLED)
@@ -1991,7 +1991,7 @@ ExecBRUpdateTriggers(EState *estate, ResultRelInfo *relinfo,
19911991
trigger->tgenabled == TRIGGER_DISABLED)
19921992
continue;
19931993
}
1994-
else /* ORIGIN or LOCAL role */
1994+
else /* ORIGIN or LOCAL role */
19951995
{
19961996
if (trigger->tgenabled == TRIGGER_FIRES_ON_REPLICA ||
19971997
trigger->tgenabled == TRIGGER_DISABLED)
@@ -3616,7 +3616,7 @@ AfterTriggerSaveEvent(ResultRelInfo *relinfo, int event, bool row_trigger,
36163616
trigger->tgenabled == TRIGGER_DISABLED)
36173617
continue;
36183618
}
3619-
else /* ORIGIN or LOCAL role */
3619+
else /* ORIGIN or LOCAL role */
36203620
{
36213621
if (trigger->tgenabled == TRIGGER_FIRES_ON_REPLICA ||
36223622
trigger->tgenabled == TRIGGER_DISABLED)

src/backend/rewrite/rewriteHandler.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
* Portions Copyright (c) 1994, Regents of the University of California
88
*
99
* IDENTIFICATION
10-
* $PostgreSQL: pgsql/src/backend/rewrite/rewriteHandler.c,v 1.175 2007/11/15 23:23:44 momjian Exp $
10+
* $PostgreSQL: pgsql/src/backend/rewrite/rewriteHandler.c,v 1.176 2007/11/16 01:51:22 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -1051,7 +1051,7 @@ matchLocks(CmdType event,
10511051
oneLock->enabled == RULE_DISABLED)
10521052
continue;
10531053
}
1054-
else /* ORIGIN or LOCAL ROLE */
1054+
else /* ORIGIN or LOCAL ROLE */
10551055
{
10561056
if (oneLock->enabled == RULE_FIRES_ON_REPLICA ||
10571057
oneLock->enabled == RULE_DISABLED)

src/backend/utils/adt/tsvector_op.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*
99
* IDENTIFICATION
10-
* $PostgreSQL: pgsql/src/backend/utils/adt/tsvector_op.c,v 1.8 2007/11/15 23:23:44 momjian Exp $
10+
* $PostgreSQL: pgsql/src/backend/utils/adt/tsvector_op.c,v 1.9 2007/11/16 01:51:22 momjian Exp $
1111
*
1212
*-------------------------------------------------------------------------
1313
*/
@@ -415,7 +415,7 @@ tsvector_concat(PG_FUNCTION_ARGS)
415415
if (ptr2->haspos)
416416
dataoff += add_pos(in2, ptr2, out, ptr, maxpos) * sizeof(WordEntryPos);
417417
}
418-
else /* must have ptr2->haspos */
418+
else /* must have ptr2->haspos */
419419
{
420420
int addlen = add_pos(in2, ptr2, out, ptr, maxpos);
421421

0 commit comments

Comments
 (0)