Makes it compile...still needs work

This commit is contained in:
Marc G. Fournier 1996-11-05 11:57:55 +00:00
parent 90113e2847
commit e4725ee76a
5 changed files with 27 additions and 5 deletions

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.3 1996/11/03 23:27:01 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/heap.c,v 1.4 1996/11/05 11:57:50 scrappy Exp $
*
* INTERFACE ROUTINES
* heap_creatr() - Create an uncataloged heap relation
@ -30,6 +30,9 @@
#include "postgres.h"
#include <catalog/heap.h>
#include <catalog/pg_proc.h>
#include "parser/catalog_utils.h"
#include "access/heapam.h"

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.5 1996/11/03 23:27:02 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/index.c,v 1.6 1996/11/05 11:57:52 scrappy Exp $
*
*
* INTERFACE ROUTINES
@ -25,6 +25,10 @@
*/
#include "postgres.h"
#include <catalog/pg_proc.h>
#include <storage/bufmgr.h>
#include <fmgr.h>
#include "access/genam.h"
#include "access/heapam.h"
#include "utils/builtins.h"
@ -60,6 +64,11 @@
#include "optimizer/prep.h"
#include "access/istrat.h"
#ifndef HAVE_MEMMOVE
# include <regex/utils.h>
#else
# include <string.h>
#endif
/*
* macros used in guessing how many tuples are on a page.
@ -1469,9 +1478,11 @@ DefaultBuild(Relation heapRelation,
Datum *datum;
char *nullv;
long reltuples, indtuples;
#ifndef OMIT_PARTIAL_INDEX
ExprContext *econtext;
TupleTable tupleTable;
TupleTableSlot *slot;
#endif
Node *predicate;
Node *oldPred;

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_operator.c,v 1.3 1996/11/03 23:27:06 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_operator.c,v 1.4 1996/11/05 11:57:53 scrappy Exp $
*
* NOTES
* these routines moved here from commands/define.c and somewhat cleaned up.
@ -17,6 +17,9 @@
#include <string.h>
#include "postgres.h"
#include <catalog/pg_proc.h>
#include <utils/syscache.h>
#include "access/heapam.h"
#include "access/skey.h"
#include "access/htup.h"

View File

@ -7,12 +7,14 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_proc.c,v 1.2 1996/11/03 23:27:07 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_proc.c,v 1.3 1996/11/05 11:57:54 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include <string.h>
#include "postgres.h"
#include <utils/syscache.h>
#include <catalog/pg_proc.h>
#include "access/heapam.h"
#include "access/relscan.h"

View File

@ -7,12 +7,15 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_type.c,v 1.2 1996/11/03 23:27:08 scrappy Exp $
* $Header: /cvsroot/pgsql/src/backend/catalog/pg_type.c,v 1.3 1996/11/05 11:57:55 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
#include <string.h>
#include "postgres.h"
#include <utils/syscache.h>
#include <catalog/pg_proc.h>
#include "access/heapam.h"
#include "access/relscan.h"