diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2019-05-22 12:55:34 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2019-05-22 12:55:34 -0400 |
commit | be76af171cdb3e7465c4ef234af403f97ad79b7b (patch) | |
tree | 1fa62d2b7a6680a4237a1548f7002fa0b234b143 /src/include/access/gistxlog.h | |
parent | 66a4bad83aaa6613a45a00a488c04427f9969fb4 (diff) | |
download | postgresql-be76af171cdb3e7465c4ef234af403f97ad79b7b.tar.gz postgresql-be76af171cdb3e7465c4ef234af403f97ad79b7b.zip |
Initial pgindent run for v12.
This is still using the 2.0 version of pg_bsd_indent.
I thought it would be good to commit this separately,
so as to document the differences between 2.0 and 2.1 behavior.
Discussion: https://postgr.es/m/16296.1558103386@sss.pgh.pa.us
Diffstat (limited to 'src/include/access/gistxlog.h')
-rw-r--r-- | src/include/access/gistxlog.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/include/access/gistxlog.h b/src/include/access/gistxlog.h index e66b034d7b8..969a5376b5e 100644 --- a/src/include/access/gistxlog.h +++ b/src/include/access/gistxlog.h @@ -18,9 +18,10 @@ #include "lib/stringinfo.h" #define XLOG_GIST_PAGE_UPDATE 0x00 -#define XLOG_GIST_DELETE 0x10 /* delete leaf index tuples for a page */ -#define XLOG_GIST_PAGE_REUSE 0x20 /* old page is about to be reused from - * FSM */ +#define XLOG_GIST_DELETE 0x10 /* delete leaf index tuples for a + * page */ +#define XLOG_GIST_PAGE_REUSE 0x20 /* old page is about to be reused + * from FSM */ #define XLOG_GIST_PAGE_SPLIT 0x30 /* #define XLOG_GIST_INSERT_COMPLETE 0x40 */ /* not used anymore */ /* #define XLOG_GIST_CREATE_INDEX 0x50 */ /* not used anymore */ @@ -83,7 +84,8 @@ typedef struct gistxlogPageSplit typedef struct gistxlogPageDelete { TransactionId deleteXid; /* last Xid which could see page in scan */ - OffsetNumber downlinkOffset; /* Offset of downlink referencing this page */ + OffsetNumber downlinkOffset; /* Offset of downlink referencing this + * page */ } gistxlogPageDelete; #define SizeOfGistxlogPageDelete (offsetof(gistxlogPageDelete, downlinkOffset) + sizeof(OffsetNumber)) |