From 6560407c7db2c7e32926a46f5fb52175ac10d9e5 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Thu, 9 Jun 2011 14:32:50 -0400 Subject: Pgindent run before 9.1 beta2. --- src/backend/commands/sequence.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/backend/commands/sequence.c') diff --git a/src/backend/commands/sequence.c b/src/backend/commands/sequence.c index 383690270b8..be04177a2ee 100644 --- a/src/backend/commands/sequence.c +++ b/src/backend/commands/sequence.c @@ -1077,12 +1077,12 @@ read_info(SeqTable elm, Relation rel, Buffer *buf) tuple.t_data = (HeapTupleHeader) PageGetItem(page, lp); /* - * Previous releases of Postgres neglected to prevent SELECT FOR UPDATE - * on a sequence, which would leave a non-frozen XID in the sequence - * tuple's xmax, which eventually leads to clog access failures or worse. - * If we see this has happened, clean up after it. We treat this like a - * hint bit update, ie, don't bother to WAL-log it, since we can certainly - * do this again if the update gets lost. + * Previous releases of Postgres neglected to prevent SELECT FOR UPDATE on + * a sequence, which would leave a non-frozen XID in the sequence tuple's + * xmax, which eventually leads to clog access failures or worse. If we + * see this has happened, clean up after it. We treat this like a hint + * bit update, ie, don't bother to WAL-log it, since we can certainly do + * this again if the update gets lost. */ if (HeapTupleHeaderGetXmax(tuple.t_data) != InvalidTransactionId) { -- cgit v1.2.3