|
| 1 | +/*------------------------------------------------------------------------- |
| 2 | + * |
| 3 | + * hash_xlog.h |
| 4 | + * header file for Postgres hash AM implementation |
| 5 | + * |
| 6 | + * |
| 7 | + * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group |
| 8 | + * Portions Copyright (c) 1994, Regents of the University of California |
| 9 | + * |
| 10 | + * src/include/access/hash_xlog.h |
| 11 | + * |
| 12 | + *------------------------------------------------------------------------- |
| 13 | + */ |
| 14 | +#ifndefHASH_XLOG_H |
| 15 | +#defineHASH_XLOG_H |
| 16 | + |
| 17 | +#include"access/hash.h" |
| 18 | +#include"access/xlogreader.h" |
| 19 | + |
| 20 | + |
| 21 | +externvoidhash_redo(XLogReaderState*record); |
| 22 | +externvoidhash_desc(StringInfobuf,XLogReaderState*record); |
| 23 | +externconstchar*hash_identify(uint8info); |
| 24 | + |
| 25 | +#endif/* HASH_XLOG_H */ |