head	1.2;
access;
symbols
	release_4_2:1.2
	aix_ok:1.2
	Version_2_1:1.2
	Version_2:1.1;
locks; strict;
comment	@ * @;


1.2
date	91.02.06.18.17.56;	author cimarron;	state Exp;
branches;
next	1.1;

1.1
date	90.06.18.16.16.26;	author cimarron;	state Version_2;
branches;
next	;


desc
@@


1.2
log
@preliminary checkin for access method and system cache changes
@
text
@/* ----------------------------------------------------------------
 *   FILE
 *	pg_log.h
 *
 *   DESCRIPTION
 *	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.
 *
 *   NOTES
 *	The structures and macros used by the transam/ code
 *	to access pg_log should some day go here -cim 6/18/90
 *
 *   IDENTIFICATION
 *	$Header: RCS/pg_log.h,v 1.1 90/06/18 16:16:26 cimarron Version_2 Locker: cimarron $
 * ----------------------------------------------------------------
 */
#ifndef PgLogIncluded
#define PgLogIncluded 1	/* include this only once */

/* ----------------
 *	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.
 * ----------------
 */
#include "tmp/postgres.h"

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

typedef FormData_pg_log	*Form_pg_log;

#define Name_pg_log		"pg_log"
#define Natts_pg_log		1
#define Anum_pg_log_logfoo	1

#endif PgLogIncluded
@


1.1
log
@Initial version.  The new setup is for lib/H/catalog to contain
a pg_xxx.h file for each pg_xxx database in the system catalogs.
This .h file contains CATALOG() and DATA() statements used to
generate typedefs for the catalog tuple structures as well as
initialization scripts for createdb.
@
text
@d7 3
a9 2
 *	it is automatically created by the transam/ code and does
 *	not have CATALOG() or DATA() information.
d16 1
a16 1
 *	$Header$
d22 17
@
