aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/transam/multixact.c
diff options
context:
space:
mode:
authorStephen Frost <sfrost@snowman.net>2013-06-01 09:38:15 -0400
committerStephen Frost <sfrost@snowman.net>2013-06-01 09:38:15 -0400
commit551938ae2284975b53d665fa8a82a7e1f3514dda (patch)
tree14ceecfcc9413f1b3366393227b2604bf02e2bf1 /src/backend/access/transam/multixact.c
parentdedf7e9919a2dc42370c0b218728e1556985de6a (diff)
downloadpostgresql-551938ae2284975b53d665fa8a82a7e1f3514dda.tar.gz
postgresql-551938ae2284975b53d665fa8a82a7e1f3514dda.zip
Post-pgindent cleanup
Make slightly better decisions about indentation than what pgindent is capable of. Mostly breaking out long function calls into one line per argument, with a few other minor adjustments. No functional changes- all whitespace. pgindent ran cleanly (didn't change anything) after. Passes all regressions.
Diffstat (limited to 'src/backend/access/transam/multixact.c')
-rw-r--r--src/backend/access/transam/multixact.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/backend/access/transam/multixact.c b/src/backend/access/transam/multixact.c
index a74678d967f..95a39db545c 100644
--- a/src/backend/access/transam/multixact.c
+++ b/src/backend/access/transam/multixact.c
@@ -432,8 +432,8 @@ MultiXactIdExpand(MultiXactId multi, TransactionId xid, MultiXactStatus status)
/*
* Determine which of the members of the MultiXactId are still of
* interest. This is any running transaction, and also any transaction
- * that grabbed something stronger than just a lock and was committed.
- * (An update that aborted is of no interest here.)
+ * that grabbed something stronger than just a lock and was committed. (An
+ * update that aborted is of no interest here.)
*
* (Removing dead members is just an optimization, but a useful one. Note
* we have the same race condition here as above: j could be 0 at the end
@@ -1349,7 +1349,9 @@ mXactCacheGetById(MultiXactId multi, MultiXactMember **members)
memcpy(ptr, entry->members, size);
debug_elog3(DEBUG2, "CacheGet: found %s",
- mxid_to_string(multi, entry->nmembers, entry->members));
+ mxid_to_string(multi,
+ entry->nmembers,
+ entry->members));
return entry->nmembers;
}
}