PostgreSQL Source Code git master
hash_xlog.h File Reference
#include "access/xlogreader.h"
#include "lib/stringinfo.h"
#include "storage/off.h"
Include dependency graph for hash_xlog.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  xl_hash_insert
 
struct  xl_hash_add_ovfl_page
 
struct  xl_hash_split_allocate_page
 
struct  xl_hash_split_complete
 
struct  xl_hash_move_page_contents
 
struct  xl_hash_squeeze_page
 
struct  xl_hash_delete
 
struct  xl_hash_update_meta_page
 
struct  xl_hash_init_meta_page
 
struct  xl_hash_init_bitmap_page
 
struct  xl_hash_vacuum_one_page
 

Macros

#define HASH_XLOG_FREE_OVFL_BUFS   6
 
#define XLOG_HASH_INIT_META_PAGE   0x00 /* initialize the meta page */
 
#define XLOG_HASH_INIT_BITMAP_PAGE   0x10 /* initialize the bitmap page */
 
#define XLOG_HASH_INSERT   0x20 /* add index tuple without split */
 
#define XLOG_HASH_ADD_OVFL_PAGE   0x30 /* add overflow page */
 
#define XLOG_HASH_SPLIT_ALLOCATE_PAGE   0x40 /* allocate new page for split */
 
#define XLOG_HASH_SPLIT_PAGE   0x50 /* split page */
 
#define XLOG_HASH_SPLIT_COMPLETE   0x60 /* completion of split operation */
 
#define XLOG_HASH_MOVE_PAGE_CONTENTS
 
#define XLOG_HASH_SQUEEZE_PAGE
 
#define XLOG_HASH_DELETE   0x90 /* delete index tuples from a page */
 
#define XLOG_HASH_SPLIT_CLEANUP
 
#define XLOG_HASH_UPDATE_META_PAGE   0xB0 /* update meta page after vacuum */
 
#define XLOG_HASH_VACUUM_ONE_PAGE
 
#define XLH_SPLIT_META_UPDATE_MASKS   (1<<0)
 
#define XLH_SPLIT_META_UPDATE_SPLITPOINT   (1<<1)
 
#define SizeOfHashInsert   (offsetof(xl_hash_insert, offnum) + sizeof(OffsetNumber))
 
#define SizeOfHashAddOvflPage    (offsetof(xl_hash_add_ovfl_page, bmpage_found) + sizeof(bool))
 
#define SizeOfHashSplitAllocPage    (offsetof(xl_hash_split_allocate_page, flags) + sizeof(uint8))
 
#define SizeOfHashSplitComplete    (offsetof(xl_hash_split_complete, new_bucket_flag) + sizeof(uint16))
 
#define SizeOfHashMovePageContents    (offsetof(xl_hash_move_page_contents, is_prim_bucket_same_wrt) + sizeof(bool))
 
#define SizeOfHashSqueezePage    (offsetof(xl_hash_squeeze_page, is_prev_bucket_same_wrt) + sizeof(bool))
 
#define SizeOfHashDelete   (offsetof(xl_hash_delete, is_primary_bucket_page) + sizeof(bool))
 
#define SizeOfHashUpdateMetaPage    (offsetof(xl_hash_update_meta_page, ntuples) + sizeof(double))
 
#define SizeOfHashInitMetaPage    (offsetof(xl_hash_init_meta_page, ffactor) + sizeof(uint16))
 
#define SizeOfHashInitBitmapPage    (offsetof(xl_hash_init_bitmap_page, bmsize) + sizeof(uint16))
 
#define SizeOfHashVacuumOnePage   offsetof(xl_hash_vacuum_one_page, offsets)
 

Typedefs

typedef struct xl_hash_insert xl_hash_insert
 
typedef struct xl_hash_add_ovfl_page xl_hash_add_ovfl_page
 
typedef struct xl_hash_split_allocate_page xl_hash_split_allocate_page
 
typedef struct xl_hash_split_complete xl_hash_split_complete
 
typedef struct xl_hash_move_page_contents xl_hash_move_page_contents
 
typedef struct xl_hash_squeeze_page xl_hash_squeeze_page
 
typedef struct xl_hash_delete xl_hash_delete
 
typedef struct xl_hash_update_meta_page xl_hash_update_meta_page
 
typedef struct xl_hash_init_meta_page xl_hash_init_meta_page
 
typedef struct xl_hash_init_bitmap_page xl_hash_init_bitmap_page
 
typedef struct xl_hash_vacuum_one_page xl_hash_vacuum_one_page
 

Functions

void hash_redo (XLogReaderState *record)
 
void hash_desc (StringInfo buf, XLogReaderState *record)
 
const char * hash_identify (uint8 info)
 
void hash_mask (char *pagedata, BlockNumber blkno)
 

Macro Definition Documentation

◆ HASH_XLOG_FREE_OVFL_BUFS

#define HASH_XLOG_FREE_OVFL_BUFS   6

Definition at line 22 of file hash_xlog.h.

◆ SizeOfHashAddOvflPage

#define SizeOfHashAddOvflPage    (offsetof(xl_hash_add_ovfl_page, bmpage_found) + sizeof(bool))

Definition at line 80 of file hash_xlog.h.

◆ SizeOfHashDelete

#define SizeOfHashDelete   (offsetof(xl_hash_delete, is_primary_bucket_page) + sizeof(bool))

Definition at line 187 of file hash_xlog.h.

◆ SizeOfHashInitBitmapPage

#define SizeOfHashInitBitmapPage    (offsetof(xl_hash_init_bitmap_page, bmsize) + sizeof(uint16))

Definition at line 234 of file hash_xlog.h.

◆ SizeOfHashInitMetaPage

#define SizeOfHashInitMetaPage    (offsetof(xl_hash_init_meta_page, ffactor) + sizeof(uint16))

Definition at line 218 of file hash_xlog.h.

◆ SizeOfHashInsert

#define SizeOfHashInsert   (offsetof(xl_hash_insert, offnum) + sizeof(OffsetNumber))

Definition at line 61 of file hash_xlog.h.

◆ SizeOfHashMovePageContents

#define SizeOfHashMovePageContents    (offsetof(xl_hash_move_page_contents, is_prim_bucket_same_wrt) + sizeof(bool))

Definition at line 138 of file hash_xlog.h.

◆ SizeOfHashSplitAllocPage

#define SizeOfHashSplitAllocPage    (offsetof(xl_hash_split_allocate_page, flags) + sizeof(uint8))

Definition at line 100 of file hash_xlog.h.

◆ SizeOfHashSplitComplete

#define SizeOfHashSplitComplete    (offsetof(xl_hash_split_complete, new_bucket_flag) + sizeof(uint16))

Definition at line 117 of file hash_xlog.h.

◆ SizeOfHashSqueezePage

#define SizeOfHashSqueezePage    (offsetof(xl_hash_squeeze_page, is_prev_bucket_same_wrt) + sizeof(bool))

Definition at line 168 of file hash_xlog.h.

◆ SizeOfHashUpdateMetaPage

#define SizeOfHashUpdateMetaPage    (offsetof(xl_hash_update_meta_page, ntuples) + sizeof(double))

Definition at line 201 of file hash_xlog.h.

◆ SizeOfHashVacuumOnePage

#define SizeOfHashVacuumOnePage   offsetof(xl_hash_vacuum_one_page, offsets)

Definition at line 257 of file hash_xlog.h.

◆ XLH_SPLIT_META_UPDATE_MASKS

#define XLH_SPLIT_META_UPDATE_MASKS   (1<<0)

Definition at line 45 of file hash_xlog.h.

◆ XLH_SPLIT_META_UPDATE_SPLITPOINT

#define XLH_SPLIT_META_UPDATE_SPLITPOINT   (1<<1)

Definition at line 46 of file hash_xlog.h.

◆ XLOG_HASH_ADD_OVFL_PAGE

#define XLOG_HASH_ADD_OVFL_PAGE   0x30 /* add overflow page */

Definition at line 30 of file hash_xlog.h.

◆ XLOG_HASH_DELETE

#define XLOG_HASH_DELETE   0x90 /* delete index tuples from a page */

Definition at line 36 of file hash_xlog.h.

◆ XLOG_HASH_INIT_BITMAP_PAGE

#define XLOG_HASH_INIT_BITMAP_PAGE   0x10 /* initialize the bitmap page */

Definition at line 28 of file hash_xlog.h.

◆ XLOG_HASH_INIT_META_PAGE

#define XLOG_HASH_INIT_META_PAGE   0x00 /* initialize the meta page */

Definition at line 27 of file hash_xlog.h.

◆ XLOG_HASH_INSERT

#define XLOG_HASH_INSERT   0x20 /* add index tuple without split */

Definition at line 29 of file hash_xlog.h.

◆ XLOG_HASH_MOVE_PAGE_CONTENTS

#define XLOG_HASH_MOVE_PAGE_CONTENTS
Value:
0x70 /* remove tuples from one page
* and add to another page */

Definition at line 34 of file hash_xlog.h.

◆ XLOG_HASH_SPLIT_ALLOCATE_PAGE

#define XLOG_HASH_SPLIT_ALLOCATE_PAGE   0x40 /* allocate new page for split */

Definition at line 31 of file hash_xlog.h.

◆ XLOG_HASH_SPLIT_CLEANUP

#define XLOG_HASH_SPLIT_CLEANUP
Value:
0xA0 /* clear split-cleanup flag in primary
* bucket page after deleting tuples
* that are moved due to split */

Definition at line 37 of file hash_xlog.h.

◆ XLOG_HASH_SPLIT_COMPLETE

#define XLOG_HASH_SPLIT_COMPLETE   0x60 /* completion of split operation */

Definition at line 33 of file hash_xlog.h.

◆ XLOG_HASH_SPLIT_PAGE

#define XLOG_HASH_SPLIT_PAGE   0x50 /* split page */

Definition at line 32 of file hash_xlog.h.

◆ XLOG_HASH_SQUEEZE_PAGE

#define XLOG_HASH_SQUEEZE_PAGE
Value:
0x80 /* add tuples to one of the previous
* pages in chain and free the ovfl
* page */

Definition at line 35 of file hash_xlog.h.

◆ XLOG_HASH_UPDATE_META_PAGE

#define XLOG_HASH_UPDATE_META_PAGE   0xB0 /* update meta page after vacuum */

Definition at line 38 of file hash_xlog.h.

◆ XLOG_HASH_VACUUM_ONE_PAGE

#define XLOG_HASH_VACUUM_ONE_PAGE
Value:
0xC0 /* remove dead tuples from index
* page */

Definition at line 40 of file hash_xlog.h.

Typedef Documentation

◆ xl_hash_add_ovfl_page

◆ xl_hash_delete

◆ xl_hash_init_bitmap_page

◆ xl_hash_init_meta_page

◆ xl_hash_insert

◆ xl_hash_move_page_contents

◆ xl_hash_split_allocate_page

◆ xl_hash_split_complete

◆ xl_hash_squeeze_page

◆ xl_hash_update_meta_page

◆ xl_hash_vacuum_one_page

Function Documentation

◆ hash_desc()

void hash_desc ( StringInfo  buf,
XLogReaderState record 
)

Definition at line 20 of file hashdesc.c.

21{
22 char *rec = XLogRecGetData(record);
23 uint8 info = XLogRecGetInfo(record) & ~XLR_INFO_MASK;
24
25 switch (info)
26 {
28 {
30
31 appendStringInfo(buf, "num_tuples %g, procid %u, fillfactor %d",
32 xlrec->num_tuples,
33 xlrec->procid,
34 xlrec->ffactor);
35 break;
36 }
38 {
40
41 appendStringInfo(buf, "bmsize %d", xlrec->bmsize);
42 break;
43 }
45 {
46 xl_hash_insert *xlrec = (xl_hash_insert *) rec;
47
48 appendStringInfo(buf, "off %u", xlrec->offnum);
49 break;
50 }
52 {
54
55 appendStringInfo(buf, "bmsize %d, bmpage_found %c",
56 xlrec->bmsize, (xlrec->bmpage_found) ? 'T' : 'F');
57 break;
58 }
60 {
62
63 appendStringInfo(buf, "new_bucket %u, old_bucket_flag %u, new_bucket_flag %u, meta_page_masks_updated %c, issplitpoint_changed %c",
64 xlrec->new_bucket,
65 xlrec->old_bucket_flag,
66 xlrec->new_bucket_flag,
67 (xlrec->flags & XLH_SPLIT_META_UPDATE_MASKS) ? 'T' : 'F',
68 (xlrec->flags & XLH_SPLIT_META_UPDATE_SPLITPOINT) ? 'T' : 'F');
69 break;
70 }
72 {
74
75 appendStringInfo(buf, "old_bucket_flag %u, new_bucket_flag %u",
76 xlrec->old_bucket_flag, xlrec->new_bucket_flag);
77 break;
78 }
80 {
82
83 appendStringInfo(buf, "ntups %d, is_primary %c",
84 xlrec->ntups,
85 xlrec->is_prim_bucket_same_wrt ? 'T' : 'F');
86 break;
87 }
89 {
91
92 appendStringInfo(buf, "prevblkno %u, nextblkno %u, ntups %d, is_primary %c, is_previous %c",
93 xlrec->prevblkno,
94 xlrec->nextblkno,
95 xlrec->ntups,
96 xlrec->is_prim_bucket_same_wrt ? 'T' : 'F',
97 xlrec->is_prev_bucket_same_wrt ? 'T' : 'F');
98 break;
99 }
100 case XLOG_HASH_DELETE:
101 {
102 xl_hash_delete *xlrec = (xl_hash_delete *) rec;
103
104 appendStringInfo(buf, "clear_dead_marking %c, is_primary %c",
105 xlrec->clear_dead_marking ? 'T' : 'F',
106 xlrec->is_primary_bucket_page ? 'T' : 'F');
107 break;
108 }
110 {
112
113 appendStringInfo(buf, "ntuples %g",
114 xlrec->ntuples);
115 break;
116 }
118 {
120
121 appendStringInfo(buf, "ntuples %d, snapshotConflictHorizon %u, isCatalogRel %c",
122 xlrec->ntuples,
124 xlrec->isCatalogRel ? 'T' : 'F');
125 break;
126 }
127 }
128}
uint8_t uint8
Definition: c.h:539
#define XLOG_HASH_INIT_BITMAP_PAGE
Definition: hash_xlog.h:28
#define XLOG_HASH_SQUEEZE_PAGE
Definition: hash_xlog.h:35
#define XLOG_HASH_ADD_OVFL_PAGE
Definition: hash_xlog.h:30
#define XLOG_HASH_UPDATE_META_PAGE
Definition: hash_xlog.h:38
#define XLOG_HASH_INSERT
Definition: hash_xlog.h:29
#define XLOG_HASH_SPLIT_ALLOCATE_PAGE
Definition: hash_xlog.h:31
#define XLOG_HASH_INIT_META_PAGE
Definition: hash_xlog.h:27
#define XLOG_HASH_DELETE
Definition: hash_xlog.h:36
#define XLOG_HASH_SPLIT_COMPLETE
Definition: hash_xlog.h:33
#define XLH_SPLIT_META_UPDATE_SPLITPOINT
Definition: hash_xlog.h:46
#define XLOG_HASH_MOVE_PAGE_CONTENTS
Definition: hash_xlog.h:34
#define XLOG_HASH_VACUUM_ONE_PAGE
Definition: hash_xlog.h:40
#define XLH_SPLIT_META_UPDATE_MASKS
Definition: hash_xlog.h:45
static char * buf
Definition: pg_test_fsync.c:72
void appendStringInfo(StringInfo str, const char *fmt,...)
Definition: stringinfo.c:145
bool clear_dead_marking
Definition: hash_xlog.h:181
bool is_primary_bucket_page
Definition: hash_xlog.h:183
RegProcedure procid
Definition: hash_xlog.h:214
OffsetNumber offnum
Definition: hash_xlog.h:58
BlockNumber prevblkno
Definition: hash_xlog.h:156
bool is_prim_bucket_same_wrt
Definition: hash_xlog.h:159
bool is_prev_bucket_same_wrt
Definition: hash_xlog.h:162
BlockNumber nextblkno
Definition: hash_xlog.h:157
TransactionId snapshotConflictHorizon
Definition: hash_xlog.h:248
#define XLogRecGetInfo(decoder)
Definition: xlogreader.h:409
#define XLogRecGetData(decoder)
Definition: xlogreader.h:414

References appendStringInfo(), xl_hash_add_ovfl_page::bmpage_found, xl_hash_add_ovfl_page::bmsize, xl_hash_init_bitmap_page::bmsize, buf, xl_hash_delete::clear_dead_marking, xl_hash_init_meta_page::ffactor, xl_hash_split_allocate_page::flags, xl_hash_squeeze_page::is_prev_bucket_same_wrt, xl_hash_move_page_contents::is_prim_bucket_same_wrt, xl_hash_squeeze_page::is_prim_bucket_same_wrt, xl_hash_delete::is_primary_bucket_page, xl_hash_vacuum_one_page::isCatalogRel, xl_hash_split_allocate_page::new_bucket, xl_hash_split_allocate_page::new_bucket_flag, xl_hash_split_complete::new_bucket_flag, xl_hash_squeeze_page::nextblkno, xl_hash_update_meta_page::ntuples, xl_hash_vacuum_one_page::ntuples, xl_hash_move_page_contents::ntups, xl_hash_squeeze_page::ntups, xl_hash_init_meta_page::num_tuples, xl_hash_insert::offnum, xl_hash_split_allocate_page::old_bucket_flag, xl_hash_split_complete::old_bucket_flag, xl_hash_squeeze_page::prevblkno, xl_hash_init_meta_page::procid, xl_hash_vacuum_one_page::snapshotConflictHorizon, XLH_SPLIT_META_UPDATE_MASKS, XLH_SPLIT_META_UPDATE_SPLITPOINT, XLOG_HASH_ADD_OVFL_PAGE, XLOG_HASH_DELETE, XLOG_HASH_INIT_BITMAP_PAGE, XLOG_HASH_INIT_META_PAGE, XLOG_HASH_INSERT, XLOG_HASH_MOVE_PAGE_CONTENTS, XLOG_HASH_SPLIT_ALLOCATE_PAGE, XLOG_HASH_SPLIT_COMPLETE, XLOG_HASH_SQUEEZE_PAGE, XLOG_HASH_UPDATE_META_PAGE, XLOG_HASH_VACUUM_ONE_PAGE, XLogRecGetData, and XLogRecGetInfo.

◆ hash_identify()

const char * hash_identify ( uint8  info)

Definition at line 131 of file hashdesc.c.

132{
133 const char *id = NULL;
134
135 switch (info & ~XLR_INFO_MASK)
136 {
138 id = "INIT_META_PAGE";
139 break;
141 id = "INIT_BITMAP_PAGE";
142 break;
143 case XLOG_HASH_INSERT:
144 id = "INSERT";
145 break;
147 id = "ADD_OVFL_PAGE";
148 break;
150 id = "SPLIT_ALLOCATE_PAGE";
151 break;
153 id = "SPLIT_PAGE";
154 break;
156 id = "SPLIT_COMPLETE";
157 break;
159 id = "MOVE_PAGE_CONTENTS";
160 break;
162 id = "SQUEEZE_PAGE";
163 break;
164 case XLOG_HASH_DELETE:
165 id = "DELETE";
166 break;
168 id = "SPLIT_CLEANUP";
169 break;
171 id = "UPDATE_META_PAGE";
172 break;
174 id = "VACUUM_ONE_PAGE";
175 }
176
177 return id;
178}
#define XLOG_HASH_SPLIT_CLEANUP
Definition: hash_xlog.h:37
#define XLOG_HASH_SPLIT_PAGE
Definition: hash_xlog.h:32
#define XLR_INFO_MASK
Definition: xlogrecord.h:62

References XLOG_HASH_ADD_OVFL_PAGE, XLOG_HASH_DELETE, XLOG_HASH_INIT_BITMAP_PAGE, XLOG_HASH_INIT_META_PAGE, XLOG_HASH_INSERT, XLOG_HASH_MOVE_PAGE_CONTENTS, XLOG_HASH_SPLIT_ALLOCATE_PAGE, XLOG_HASH_SPLIT_CLEANUP, XLOG_HASH_SPLIT_COMPLETE, XLOG_HASH_SPLIT_PAGE, XLOG_HASH_SQUEEZE_PAGE, XLOG_HASH_UPDATE_META_PAGE, XLOG_HASH_VACUUM_ONE_PAGE, and XLR_INFO_MASK.

◆ hash_mask()

void hash_mask ( char *  pagedata,
BlockNumber  blkno 
)

Definition at line 1119 of file hash_xlog.c.

1120{
1121 Page page = (Page) pagedata;
1122 HashPageOpaque opaque;
1123 int pagetype;
1124
1126
1127 mask_page_hint_bits(page);
1128 mask_unused_space(page);
1129
1130 opaque = HashPageGetOpaque(page);
1131
1132 pagetype = opaque->hasho_flag & LH_PAGE_TYPE;
1133 if (pagetype == LH_UNUSED_PAGE)
1134 {
1135 /*
1136 * Mask everything on a UNUSED page.
1137 */
1138 mask_page_content(page);
1139 }
1140 else if (pagetype == LH_BUCKET_PAGE ||
1141 pagetype == LH_OVERFLOW_PAGE)
1142 {
1143 /*
1144 * In hash bucket and overflow pages, it is possible to modify the
1145 * LP_FLAGS without emitting any WAL record. Hence, mask the line
1146 * pointer flags. See hashgettuple(), _hash_kill_items() for details.
1147 */
1148 mask_lp_flags(page);
1149 }
1150
1151 /*
1152 * It is possible that the hint bit LH_PAGE_HAS_DEAD_TUPLES may remain
1153 * unlogged. So, mask it. See _hash_kill_items() for details.
1154 */
1155 opaque->hasho_flag &= ~LH_PAGE_HAS_DEAD_TUPLES;
1156}
void mask_lp_flags(Page page)
Definition: bufmask.c:95
void mask_page_content(Page page)
Definition: bufmask.c:119
void mask_page_lsn_and_checksum(Page page)
Definition: bufmask.c:31
void mask_unused_space(Page page)
Definition: bufmask.c:71
void mask_page_hint_bits(Page page)
Definition: bufmask.c:46
PageData * Page
Definition: bufpage.h:81
#define HashPageGetOpaque(page)
Definition: hash.h:88
#define LH_BUCKET_PAGE
Definition: hash.h:55
#define LH_UNUSED_PAGE
Definition: hash.h:53
#define LH_PAGE_TYPE
Definition: hash.h:63
#define LH_OVERFLOW_PAGE
Definition: hash.h:54
uint16 hasho_flag
Definition: hash.h:82

References HashPageOpaqueData::hasho_flag, HashPageGetOpaque, LH_BUCKET_PAGE, LH_OVERFLOW_PAGE, LH_PAGE_TYPE, LH_UNUSED_PAGE, mask_lp_flags(), mask_page_content(), mask_page_hint_bits(), mask_page_lsn_and_checksum(), and mask_unused_space().

◆ hash_redo()

void hash_redo ( XLogReaderState record)

Definition at line 1065 of file hash_xlog.c.

1066{
1067 uint8 info = XLogRecGetInfo(record) & ~XLR_INFO_MASK;
1068
1069 switch (info)
1070 {
1073 break;
1076 break;
1077 case XLOG_HASH_INSERT:
1078 hash_xlog_insert(record);
1079 break;
1082 break;
1085 break;
1087 hash_xlog_split_page(record);
1088 break;
1091 break;
1094 break;
1096 hash_xlog_squeeze_page(record);
1097 break;
1098 case XLOG_HASH_DELETE:
1099 hash_xlog_delete(record);
1100 break;
1103 break;
1106 break;
1109 break;
1110 default:
1111 elog(PANIC, "hash_redo: unknown op code %u", info);
1112 }
1113}
#define PANIC
Definition: elog.h:42
#define elog(elevel,...)
Definition: elog.h:226
static void hash_xlog_split_cleanup(XLogReaderState *record)
Definition: hash_xlog.c:937
static void hash_xlog_add_ovfl_page(XLogReaderState *record)
Definition: hash_xlog.c:172
static void hash_xlog_split_page(XLogReaderState *record)
Definition: hash_xlog.c:426
static void hash_xlog_init_meta_page(XLogReaderState *record)
Definition: hash_xlog.c:27
static void hash_xlog_split_complete(XLogReaderState *record)
Definition: hash_xlog.c:440
static void hash_xlog_update_meta_page(XLogReaderState *record)
Definition: hash_xlog.c:962
static void hash_xlog_vacuum_one_page(XLogReaderState *record)
Definition: hash_xlog.c:989
static void hash_xlog_squeeze_page(XLogReaderState *record)
Definition: hash_xlog.c:625
static void hash_xlog_insert(XLogReaderState *record)
Definition: hash_xlog.c:125
static void hash_xlog_move_page_contents(XLogReaderState *record)
Definition: hash_xlog.c:499
static void hash_xlog_split_allocate_page(XLogReaderState *record)
Definition: hash_xlog.c:310
static void hash_xlog_delete(XLogReaderState *record)
Definition: hash_xlog.c:859
static void hash_xlog_init_bitmap_page(XLogReaderState *record)
Definition: hash_xlog.c:63

References elog, hash_xlog_add_ovfl_page(), hash_xlog_delete(), hash_xlog_init_bitmap_page(), hash_xlog_init_meta_page(), hash_xlog_insert(), hash_xlog_move_page_contents(), hash_xlog_split_allocate_page(), hash_xlog_split_cleanup(), hash_xlog_split_complete(), hash_xlog_split_page(), hash_xlog_squeeze_page(), hash_xlog_update_meta_page(), hash_xlog_vacuum_one_page(), PANIC, XLOG_HASH_ADD_OVFL_PAGE, XLOG_HASH_DELETE, XLOG_HASH_INIT_BITMAP_PAGE, XLOG_HASH_INIT_META_PAGE, XLOG_HASH_INSERT, XLOG_HASH_MOVE_PAGE_CONTENTS, XLOG_HASH_SPLIT_ALLOCATE_PAGE, XLOG_HASH_SPLIT_CLEANUP, XLOG_HASH_SPLIT_COMPLETE, XLOG_HASH_SPLIT_PAGE, XLOG_HASH_SQUEEZE_PAGE, XLOG_HASH_UPDATE_META_PAGE, XLOG_HASH_VACUUM_ONE_PAGE, and XLogRecGetInfo.