blob: 23be85698eb7d2686c59b84937b2fc9831462dfa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*-------------------------------------------------------------------------
*
* hashdesc.c
* rmgr descriptor routines for access/hash/hash.c
*
* Portions Copyright (c) 1996-2014, 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, uint8 xl_info, char *rec)
{
}
|