aboutsummaryrefslogtreecommitdiff
path: root/src/backend/access/rmgrdesc/hashdesc.c
blob: d37c9b1aae3741a67f2c7ed4b51aa216a48e2a5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*-------------------------------------------------------------------------
 *
 * hashdesc.c
 *	  rmgr descriptor routines for access/hash/hash.c
 *
 * Portions Copyright (c) 1996-2016, PostgreSQL Global Development Group
 * Portions Copyright (c) 1994, Regents of the University of California
 *
 *
 * IDENTIFICATION
 *	  src/backend/access/rmgrdesc/hashdesc.c
 *
 *-------------------------------------------------------------------------
 */
#include "postgres.h"

#include "access/hash.h"

void
hash_desc(StringInfo buf, XLogReaderState *record)
{
}

const char *
hash_identify(uint8 info)
{
	return NULL;
}