pg_time.h 1.1 KB
Newer Older
1 2 3
/*-------------------------------------------------------------------------
 *
 * pg_time.h--
4 5 6 7
 *	  the system commit-time relation "pg_time" 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.
8 9 10 11
 *
 *
 * Copyright (c) 1994, Regents of the University of California
 *
12
 * $Id: pg_time.h,v 1.4 1997/09/08 02:35:28 momjian Exp $
13 14
 *
 * NOTES
15 16
 *	  The structures and macros used by the transam/ code
 *	  to access pg_time should some day go here -cim 6/18/90
17 18 19 20 21 22 23
 *
 *-------------------------------------------------------------------------
 */
#ifndef PG_TIME_H
#define PG_TIME_H

/* ----------------
24 25 26
 *		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.
27 28 29
 * ----------------
 */

30 31
CATALOG(pg_time) BOOTSTRAP
{
32
	Oid			timefoo;
33 34
} FormData_pg_time;

35
typedef FormData_pg_time *Form_pg_time;
36

37
#define Natts_pg_time			1
38 39 40
#define Anum_pg_time_timefoo	1


41
#endif							/* PG_TIME_H */