1
0
mirror of https://github.com/postgres/postgres.git synced 2025-09-02 04:21:28 +03:00

Change #include's to use <> and "" as appropriate.

This commit is contained in:
Bruce Momjian
1999-07-15 23:04:24 +00:00
parent 2e6b1e63a3
commit a9591ce66a
211 changed files with 784 additions and 784 deletions

View File

@@ -7,28 +7,28 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/_deadcode/Attic/recipe.c,v 1.4 1999/05/25 22:40:56 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/_deadcode/Attic/recipe.c,v 1.5 1999/07/15 23:03:09 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <nodes/parsenodes.h>
#include <nodes/plannodes.h>
#include <nodes/execnodes.h>
#include <nodes/makefuncs.h>
#include <catalog/pg_type.h>
#include <commands/recipe.h>
#include <libpq/libpq-be.h>
#include <parser/parse_node.h>
#include <utils/builtins.h>
#include "nodes/parsenodes.h"
#include "nodes/plannodes.h"
#include "nodes/execnodes.h"
#include "nodes/makefuncs.h"
#include "catalog/pg_type.h"
#include "commands/recipe.h"
#include "libpq/libpq-be.h"
#include "parser/parse_node.h"
#include "utils/builtins.h"
#include <utils/relcache.h> /* for RelationNameGetRelation */
#include <rewrite/rewriteHandler.h>
#include <rewrite/rewriteManip.h>
#include <tcop/pquery.h>
#include <tcop/dest.h>
#include <optimizer/planner.h>
#include <executor/executor.h>
#include "rewrite/rewriteHandler.h"
#include "rewrite/rewriteManip.h"
#include "tcop/pquery.h"
#include "tcop/dest.h"
#include "optimizer/planner.h"
#include "executor/executor.h"
/* from tcop/postgres.c */
extern CommandDest whereToSendOutput;
@@ -43,7 +43,7 @@ beginRecipe(RecipeStmt *stmt)
#else
#include <tioga/tgRecipe.h>
#include "tioga/tgRecipe.h"
#define DEBUG_RECIPE 1

View File

@@ -9,7 +9,7 @@
* doesn't work! - jolly 8/19/95
*
*
* $Id: version.c,v 1.20 1999/07/15 22:39:03 momjian Exp $
* $Id: version.c,v 1.21 1999/07/15 23:03:09 momjian Exp $
*
* NOTES
* At the point the version is defined, 2 physical relations are created
@@ -23,7 +23,7 @@
#include <stdio.h>
#include <string.h>
#include <postgres.h>
#include "postgres.h"
#define MAX_QUERY_LEN 1024

View File

@@ -6,7 +6,7 @@
* Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.48 1999/07/15 22:38:59 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.49 1999/07/15 23:03:06 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -94,8 +94,8 @@
#include "libpq/pqformat.h"
#include "miscadmin.h"
#include "utils/syscache.h"
#include <utils/trace.h>
#include <utils/ps_status.h>
#include "utils/trace.h"
#include "utils/ps_status.h"
/* stuff that we really ought not be touching directly :-( */
extern TransactionState CurrentTransactionState;

View File

@@ -14,25 +14,25 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.41 1999/07/15 22:39:00 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/cluster.c,v 1.42 1999/07/15 23:03:06 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <string.h>
#include <postgres.h>
#include "postgres.h"
#include <catalog/heap.h>
#include <access/heapam.h>
#include <access/genam.h>
#include <utils/syscache.h>
#include <catalog/index.h>
#include <catalog/pg_type.h>
#include <commands/cluster.h>
#include <commands/rename.h>
#include <utils/builtins.h>
#include <catalog/pg_proc.h>
#include <optimizer/internal.h>
#include "catalog/heap.h"
#include "access/heapam.h"
#include "access/genam.h"
#include "utils/syscache.h"
#include "catalog/index.h"
#include "catalog/pg_type.h"
#include "commands/cluster.h"
#include "commands/rename.h"
#include "utils/builtins.h"
#include "catalog/pg_proc.h"
#include "optimizer/internal.h"
#ifndef NO_SECURITY
#endif /* !NO_SECURITY */

View File

@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.49 1999/07/15 22:39:00 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/command.c,v 1.50 1999/07/15 23:03:07 momjian Exp $
*
* NOTES
* The PortalExecutorHeapMemory crap needs to be eliminated
@@ -36,7 +36,7 @@
#include "utils/temprel.h"
#include "utils/syscache.h"
#include "miscadmin.h"
#include "string.h"
#include <string.h>
/* ----------------
* PortalExecutorHeapMemory stuff

View File

@@ -6,7 +6,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.82 1999/07/15 22:39:01 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/copy.c,v 1.83 1999/07/15 23:03:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -14,24 +14,24 @@
#include <string.h>
#include <unistd.h>
#include <postgres.h>
#include "postgres.h"
#include <access/heapam.h>
#include <miscadmin.h>
#include <utils/builtins.h>
#include <utils/acl.h>
#include "access/heapam.h"
#include "miscadmin.h"
#include "utils/builtins.h"
#include "utils/acl.h"
#include <sys/stat.h>
#include <catalog/pg_index.h>
#include <utils/syscache.h>
#include <executor/executor.h>
#include <catalog/index.h>
#include <access/genam.h>
#include <catalog/pg_type.h>
#include <catalog/catname.h>
#include <catalog/pg_shadow.h>
#include <commands/copy.h>
#include "catalog/pg_index.h"
#include "utils/syscache.h"
#include "executor/executor.h"
#include "catalog/index.h"
#include "access/genam.h"
#include "catalog/pg_type.h"
#include "catalog/catname.h"
#include "catalog/pg_shadow.h"
#include "commands/copy.h"
#include "commands/trigger.h"
#include <libpq/libpq.h>
#include "libpq/libpq.h"
#ifdef MULTIBYTE
#endif

View File

@@ -7,23 +7,23 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/creatinh.c,v 1.42 1999/07/15 22:39:01 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/creatinh.c,v 1.43 1999/07/15 23:03:07 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <stdio.h>
#include <string.h>
#include <postgres.h>
#include "postgres.h"
#include <catalog/heap.h>
#include <commands/creatinh.h>
#include <access/heapam.h>
#include <utils/syscache.h>
#include <catalog/catname.h>
#include <catalog/pg_type.h>
#include <catalog/pg_inherits.h>
#include <catalog/pg_ipl.h>
#include "catalog/heap.h"
#include "commands/creatinh.h"
#include "access/heapam.h"
#include "utils/syscache.h"
#include "catalog/catname.h"
#include "catalog/pg_type.h"
#include "catalog/pg_inherits.h"
#include "catalog/pg_ipl.h"
/* ----------------
* local stuff

View File

@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/define.c,v 1.30 1999/07/15 15:18:53 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/define.c,v 1.31 1999/07/15 23:03:08 momjian Exp $
*
* DESCRIPTION
* The "DefineFoo" routines take the parse tree and pick out the
@@ -37,22 +37,22 @@
#include <string.h>
#include <math.h>
#include <postgres.h>
#include "postgres.h"
#include <access/heapam.h>
#include <catalog/catname.h>
#include <catalog/pg_aggregate.h>
#include <catalog/pg_operator.h>
#include <catalog/pg_proc.h>
#include <catalog/pg_type.h>
#include <catalog/pg_language.h>
#include <utils/syscache.h>
#include "access/heapam.h"
#include "catalog/catname.h"
#include "catalog/pg_aggregate.h"
#include "catalog/pg_operator.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_type.h"
#include "catalog/pg_language.h"
#include "utils/syscache.h"
#include <fmgr.h> /* for fmgr */
#include <utils/builtins.h> /* prototype for textin() */
#include <commands/defrem.h>
#include <tcop/dest.h>
#include <catalog/pg_shadow.h>
#include <optimizer/cost.h>
#include "commands/defrem.h"
#include "tcop/dest.h"
#include "catalog/pg_shadow.h"
#include "optimizer/cost.h"
static char *defGetString(DefElem *def);
static int defGetTypeLength(DefElem *def);

View File

@@ -4,21 +4,21 @@
*
* Copyright (c) 1994-5, Regents of the University of California
*
* $Id: explain.c,v 1.39 1999/07/15 22:39:01 momjian Exp $
* $Id: explain.c,v 1.40 1999/07/15 23:03:08 momjian Exp $
*
*/
#include <stdio.h>
#include <string.h>
#include <postgres.h>
#include "postgres.h"
#include <nodes/print.h>
#include <lib/stringinfo.h>
#include <commands/explain.h>
#include <parser/parsetree.h>
#include <optimizer/planner.h>
#include <utils/relcache.h>
#include <rewrite/rewriteHandler.h>
#include "nodes/print.h"
#include "lib/stringinfo.h"
#include "commands/explain.h"
#include "parser/parsetree.h"
#include "optimizer/planner.h"
#include "utils/relcache.h"
#include "rewrite/rewriteHandler.h"
typedef struct ExplainState
{

View File

@@ -7,28 +7,28 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.5 1999/07/15 22:39:01 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/indexcmds.c,v 1.6 1999/07/15 23:03:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <string.h>
#include <postgres.h>
#include "postgres.h"
#include <access/genam.h>
#include <access/heapam.h>
#include <utils/builtins.h>
#include <utils/syscache.h>
#include <catalog/heap.h>
#include <catalog/index.h>
#include <catalog/pg_index.h>
#include <catalog/pg_proc.h>
#include <catalog/pg_type.h>
#include <catalog/pg_opclass.h>
#include <commands/defrem.h>
#include "access/genam.h"
#include "access/heapam.h"
#include "utils/builtins.h"
#include "utils/syscache.h"
#include "catalog/heap.h"
#include "catalog/index.h"
#include "catalog/pg_index.h"
#include "catalog/pg_proc.h"
#include "catalog/pg_type.h"
#include "catalog/pg_opclass.h"
#include "commands/defrem.h"
#include <parser/parsetree.h> /* for getrelid() */
#include <optimizer/prep.h>
#include <optimizer/clauses.h>
#include "optimizer/prep.h"
#include "optimizer/clauses.h"
#define IsFuncIndex(ATTR_LIST) (((IndexElem*)lfirst(ATTR_LIST))->args!=NULL)

View File

@@ -7,23 +7,23 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/rename.c,v 1.27 1999/07/15 22:39:02 momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/commands/Attic/rename.c,v 1.28 1999/07/15 23:03:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <postgres.h>
#include "postgres.h"
#include <access/heapam.h>
#include <catalog/catname.h>
#include <utils/syscache.h>
#include <catalog/heap.h>
#include <catalog/indexing.h>
#include <catalog/catalog.h>
#include <commands/rename.h>
#include <miscadmin.h>
#include "access/heapam.h"
#include "catalog/catname.h"
#include "utils/syscache.h"
#include "catalog/heap.h"
#include "catalog/indexing.h"
#include "catalog/catalog.h"
#include "commands/rename.h"
#include "miscadmin.h"
#include <optimizer/prep.h> /* for find_all_inheritors */
#ifndef NO_SECURITY
#include <utils/acl.h>
#include "utils/acl.h"
#endif /* !NO_SECURITY */
#ifndef HAVE_MEMMOVE
#else

View File

@@ -8,14 +8,14 @@
#include <stdio.h>
#include <string.h>
#include <postgres.h>
#include <miscadmin.h>
#include "postgres.h"
#include "miscadmin.h"
#include <access/heapam.h>
#include <commands/creatinh.h>
#include <commands/sequence.h>
#include <utils/builtins.h>
#include <utils/acl.h>
#include "access/heapam.h"
#include "commands/creatinh.h"
#include "commands/sequence.h"
#include "utils/builtins.h"
#include "utils/acl.h"
#define SEQ_MAGIC 0x1717

View File

@@ -5,7 +5,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: user.c,v 1.29 1999/07/15 22:39:02 momjian Exp $
* $Id: user.c,v 1.30 1999/07/15 23:03:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -16,18 +16,18 @@
#include <fcntl.h>
#include <unistd.h>
#include <postgres.h>
#include "postgres.h"
#include <miscadmin.h>
#include <catalog/catname.h>
#include <catalog/pg_database.h>
#include <catalog/pg_shadow.h>
#include <libpq/crypt.h>
#include <access/heapam.h>
#include <tcop/tcopprot.h>
#include <utils/acl.h>
#include <utils/syscache.h>
#include <commands/user.h>
#include "miscadmin.h"
#include "catalog/catname.h"
#include "catalog/pg_database.h"
#include "catalog/pg_shadow.h"
#include "libpq/crypt.h"
#include "access/heapam.h"
#include "tcop/tcopprot.h"
#include "utils/acl.h"
#include "utils/syscache.h"
#include "commands/user.h"
static void CheckPgUserAclNotNull(void);

View File

@@ -5,24 +5,24 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: view.c,v 1.34 1999/07/15 22:39:03 momjian Exp $
* $Id: view.c,v 1.35 1999/07/15 23:03:08 momjian Exp $
*
*-------------------------------------------------------------------------
*/
#include <stdio.h>
#include <string.h>
#include <postgres.h>
#include "postgres.h"
#include <catalog/heap.h>
#include <access/xact.h>
#include <parser/parse_relation.h>
#include <parser/parse_type.h>
#include <rewrite/rewriteDefine.h>
#include <rewrite/rewriteManip.h>
#include <rewrite/rewriteRemove.h>
#include <commands/creatinh.h>
#include <commands/view.h>
#include "catalog/heap.h"
#include "access/xact.h"
#include "parser/parse_relation.h"
#include "parser/parse_type.h"
#include "rewrite/rewriteDefine.h"
#include "rewrite/rewriteManip.h"
#include "rewrite/rewriteRemove.h"
#include "commands/creatinh.h"
#include "commands/view.h"
/*---------------------------------------------------------------------
* DefineVirtualRelation