diff options
| author | Tom Lane <tgl@sss.pgh.pa.us> | 2019-05-22 13:04:48 -0400 | 
|---|---|---|
| committer | Tom Lane <tgl@sss.pgh.pa.us> | 2019-05-22 13:04:48 -0400 | 
| commit | 8255c7a5eeba8f1a38b7a431c04909bde4f5e67d (patch) | |
| tree | 50b5b32eaf388701b2714244a10fb23f8d4a2c7c /src/backend/access/transam/twophase.c | |
| parent | be76af171cdb3e7465c4ef234af403f97ad79b7b (diff) | |
Phase 2 pgindent run for v12.
Switch to 2.1 version of pg_bsd_indent.  This formats
multiline function declarations "correctly", that is with
additional lines of parameter declarations indented to match
where the first line's left parenthesis is.
Discussion: https://postgr.es/m/CAEepm=0P3FeTXRcU5B2W3jv3PgRVZ-kGUXLGfd42FFhUROO3ug@mail.gmail.com
Diffstat (limited to 'src/backend/access/transam/twophase.c')
| -rw-r--r-- | src/backend/access/transam/twophase.c | 36 | 
1 files changed, 18 insertions, 18 deletions
diff --git a/src/backend/access/transam/twophase.c b/src/backend/access/transam/twophase.c index 21e028283c1..5196d6181dd 100644 --- a/src/backend/access/transam/twophase.c +++ b/src/backend/access/transam/twophase.c @@ -202,31 +202,31 @@ static GlobalTransaction MyLockedGxact = NULL;  static bool twophaseExitRegistered = false;  static void RecordTransactionCommitPrepared(TransactionId xid, -								int nchildren, -								TransactionId *children, -								int nrels, -								RelFileNode *rels, -								int ninvalmsgs, -								SharedInvalidationMessage *invalmsgs, -								bool initfileinval, -								const char *gid); +											int nchildren, +											TransactionId *children, +											int nrels, +											RelFileNode *rels, +											int ninvalmsgs, +											SharedInvalidationMessage *invalmsgs, +											bool initfileinval, +											const char *gid);  static void RecordTransactionAbortPrepared(TransactionId xid, -							   int nchildren, -							   TransactionId *children, -							   int nrels, -							   RelFileNode *rels, -							   const char *gid); +										   int nchildren, +										   TransactionId *children, +										   int nrels, +										   RelFileNode *rels, +										   const char *gid);  static void ProcessRecords(char *bufptr, TransactionId xid, -			   const TwoPhaseCallback callbacks[]); +						   const TwoPhaseCallback callbacks[]);  static void RemoveGXact(GlobalTransaction gxact);  static void XlogReadTwoPhaseData(XLogRecPtr lsn, char **buf, int *len);  static char *ProcessTwoPhaseBuffer(TransactionId xid, -					  XLogRecPtr prepare_start_lsn, -					  bool fromdisk, bool setParent, bool setNextXid); +								   XLogRecPtr prepare_start_lsn, +								   bool fromdisk, bool setParent, bool setNextXid);  static void MarkAsPreparingGuts(GlobalTransaction gxact, TransactionId xid, -					const char *gid, TimestampTz prepared_at, Oid owner, -					Oid databaseid); +								const char *gid, TimestampTz prepared_at, Oid owner, +								Oid databaseid);  static void RemoveTwoPhaseFile(TransactionId xid, bool giveWarning);  static void RecreateTwoPhaseFile(TransactionId xid, void *content, int len);  | 
