aboutsummaryrefslogtreecommitdiff
path: root/src/include/catalog/pg_log.h
blob: 7aa4240762d0a8ecee0f7c1a1a4566b4c2ffa8c7 (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
29
30
31
32
33
34
35
36
37
38
39
/*-------------------------------------------------------------------------
 *
 * pg_log.h--
 *    the system log relation "pg_log" is not a "heap" relation.
 *    it is automatically created by the transam/ code and the
 *    information here is all bogus and is just here to make the
 *    relcache code happy.
 *
 *
 * Copyright (c) 1994, Regents of the University of California
 *
 * $Id: pg_log.h,v 1.2 1996/10/31 09:47:42 scrappy Exp $
 *
 * NOTES
 *    The structures and macros used by the transam/ code
 *    to access pg_log should some day go here -cim 6/18/90
 *
 *-------------------------------------------------------------------------
 */
#ifndef PG_LOG_H
#define PG_LOG_H

/* ----------------
 *	postgres.h contains the system type definintions and the
 *	CATALOG(), BOOTSTRAP and DATA() sugar words so this file
 *	can be read by both genbki.sh and the C compiler.
 * ----------------
 */

CATALOG(pg_log) BOOTSTRAP {
    Oid  	logfoo;
} FormData_pg_log;

typedef FormData_pg_log	*Form_pg_log;

#define Natts_pg_log		1
#define Anum_pg_log_logfoo	1

#endif /* PG_LOG_H */