blob: a50008478e2200d4a57ffe52b62a99996feccd1f (
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-2013, 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)
{
}
|