aboutsummaryrefslogtreecommitdiff
path: root/src/include/access/hash_xlog.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/access/hash_xlog.h')
-rw-r--r--src/include/access/hash_xlog.h25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/include/access/hash_xlog.h b/src/include/access/hash_xlog.h
new file mode 100644
index 00000000000..5f941a9dfca
--- /dev/null
+++ b/src/include/access/hash_xlog.h
@@ -0,0 +1,25 @@
+/*-------------------------------------------------------------------------
+ *
+ * hash_xlog.h
+ * header file for Postgres hash AM implementation
+ *
+ *
+ * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
+ * Portions Copyright (c) 1994, Regents of the University of California
+ *
+ * src/include/access/hash_xlog.h
+ *
+ *-------------------------------------------------------------------------
+ */
+#ifndef HASH_XLOG_H
+#define HASH_XLOG_H
+
+#include "access/hash.h"
+#include "access/xlogreader.h"
+
+
+extern void hash_redo(XLogReaderState *record);
+extern void hash_desc(StringInfo buf, XLogReaderState *record);
+extern const char *hash_identify(uint8 info);
+
+#endif /* HASH_XLOG_H */