mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Another batch ...
This commit is contained in:
parent
7d30c90ecc
commit
d90a0d770c
9 changed files with 21 additions and 15 deletions
|
|
@ -6,14 +6,14 @@
|
|||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: catalog.h,v 1.7 1999/02/13 23:21:01 momjian Exp $
|
||||
* $Id: catalog.h,v 1.7.2.1 1999/07/30 18:52:53 scrappy Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef CATALOG_H
|
||||
#define CATALOG_H
|
||||
|
||||
#include <access/tupdesc.h>
|
||||
#include "access/tupdesc.h"
|
||||
|
||||
extern char *relpath(char *relname);
|
||||
extern bool IsSystemRelationName(char *relname);
|
||||
|
|
|
|||
|
|
@ -6,14 +6,14 @@
|
|||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: heap.h,v 1.19 1999/05/25 16:13:39 momjian Exp $
|
||||
* $Id: heap.h,v 1.19.2.1 1999/07/30 18:52:53 scrappy Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef HEAP_H
|
||||
#define HEAP_H
|
||||
|
||||
#include <utils/rel.h>
|
||||
#include "utils/rel.h"
|
||||
|
||||
extern Oid RelnameFindRelid(char *relname);
|
||||
extern Relation heap_create(char *relname, TupleDesc att,
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@
|
|||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: pg_proc.h,v 1.99 1999/05/25 16:13:47 momjian Exp $
|
||||
* $Id: pg_proc.h,v 1.99.2.1 1999/07/30 18:52:53 scrappy Exp $
|
||||
*
|
||||
* NOTES
|
||||
* The script catalog/genbki.sh reads this file and generates .bki
|
||||
|
|
@ -22,7 +22,7 @@
|
|||
#ifndef PG_PROC_H
|
||||
#define PG_PROC_H
|
||||
|
||||
#include <tcop/dest.h>
|
||||
#include "tcop/dest.h"
|
||||
|
||||
/* ----------------
|
||||
* postgres.h contains the system type definintions and the
|
||||
|
|
|
|||
|
|
@ -6,14 +6,14 @@
|
|||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: command.h,v 1.14 1999/05/25 22:42:41 momjian Exp $
|
||||
* $Id: command.h,v 1.14.2.1 1999/07/30 18:52:55 scrappy Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef COMMAND_H
|
||||
#define COMMAND_H
|
||||
|
||||
#include <utils/portal.h>
|
||||
#include "utils/portal.h"
|
||||
|
||||
extern MemoryContext PortalExecutorHeapMemory;
|
||||
|
||||
|
|
|
|||
|
|
@ -6,13 +6,16 @@
|
|||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: dbcommands.h,v 1.8 1999/03/16 03:24:18 momjian Exp $
|
||||
* $Id: dbcommands.h,v 1.8.2.1 1999/07/30 18:52:55 scrappy Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef DBCOMMANDS_H
|
||||
#define DBCOMMANDS_H
|
||||
|
||||
#include <signal.h>
|
||||
#include "tcop/dest.h"
|
||||
|
||||
/*
|
||||
* Originally from tmp/daemon.h. The functions declared in daemon.h does not
|
||||
* exist; hence removed. -- AY 7/29/94
|
||||
|
|
|
|||
|
|
@ -6,15 +6,15 @@
|
|||
*
|
||||
* Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $Id: defrem.h,v 1.15 1999/02/13 23:21:18 momjian Exp $
|
||||
* $Id: defrem.h,v 1.15.2.1 1999/07/30 18:52:56 scrappy Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef DEFREM_H
|
||||
#define DEFREM_H
|
||||
|
||||
#include <tcop/dest.h>
|
||||
#include <nodes/parsenodes.h>
|
||||
#include "nodes/parsenodes.h"
|
||||
#include "tcop/dest.h"
|
||||
|
||||
/*
|
||||
* prototypes in defind.c
|
||||
|
|
|
|||
|
|
@ -5,15 +5,15 @@
|
|||
*
|
||||
* Copyright (c) 1994-5, Regents of the University of California
|
||||
*
|
||||
* $Id: explain.h,v 1.8 1999/02/13 23:21:19 momjian Exp $
|
||||
* $Id: explain.h,v 1.8.2.1 1999/07/30 18:52:56 scrappy Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
#ifndef EXPLAIN_H
|
||||
#define EXPLAIN_H
|
||||
|
||||
#include "tcop/dest.h"
|
||||
#include "nodes/parsenodes.h"
|
||||
#include "tcop/dest.h"
|
||||
|
||||
extern void ExplainQuery(Query *query, bool verbose, CommandDest dest);
|
||||
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
#ifndef PROCLANG_H
|
||||
#define PROCLANG_H
|
||||
|
||||
#include <nodes/parsenodes.h>
|
||||
#include "nodes/parsenodes.h"
|
||||
|
||||
extern void CreateProceduralLanguage(CreatePLangStmt *stmt);
|
||||
extern void DropProceduralLanguage(DropPLangStmt *stmt);
|
||||
|
|
|
|||
|
|
@ -10,6 +10,9 @@
|
|||
#ifndef USER_H
|
||||
#define USER_H
|
||||
|
||||
#include "nodes/parsenodes.h"
|
||||
#include "tcop/dest.h"
|
||||
|
||||
extern void DefineUser(CreateUserStmt *stmt, CommandDest);
|
||||
extern void AlterUser(AlterUserStmt *stmt, CommandDest);
|
||||
extern void RemoveUser(char *user, CommandDest);
|
||||
|
|
|
|||
Loading…
Reference in a new issue