diff options
Diffstat (limited to 'src/backend/storage/ipc/sinval.c')
-rw-r--r-- | src/backend/storage/ipc/sinval.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/backend/storage/ipc/sinval.c b/src/backend/storage/ipc/sinval.c index 526923593f9..fe6dc8141bc 100644 --- a/src/backend/storage/ipc/sinval.c +++ b/src/backend/storage/ipc/sinval.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinval.c,v 1.28 2001/03/22 03:59:45 momjian Exp $ + * $Header: /cvsroot/pgsql/src/backend/storage/ipc/sinval.c,v 1.29 2001/03/23 04:49:54 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -319,11 +319,13 @@ GetSnapshotData(bool serializable) xid < FirstTransactionId || xid >= snapshot->xmax) { - /* - * Seems that there is no sense to store xid >= - * snapshot->xmax (what we got from ReadNewTransactionId - * above) in snapshot->xip - we just assume that all xacts + /*-------- + * Seems that there is no sense to store + * xid >= snapshot->xmax + * (what we got from ReadNewTransactionId above) + * in snapshot->xip. We just assume that all xacts * with such xid-s are running and may be ignored. + *-------- */ continue; } |