1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-26 12:21:12 +03:00

Move new typedef AclId into c.h, so as to avoid cluttering namespace

by having to include miscadmin.h into other header files.
This commit is contained in:
Tom Lane
2003-01-09 18:00:24 +00:00
parent 9df2c44032
commit 83b06823f6
7 changed files with 14 additions and 21 deletions

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.56 2003/01/07 22:32:10 tgl Exp $ * $Header: /cvsroot/pgsql/src/backend/tcop/fastpath.c,v 1.57 2003/01/09 18:00:23 tgl Exp $
* *
* NOTES * NOTES
* This cruft is the server side of PQfn. * This cruft is the server side of PQfn.
@ -64,6 +64,7 @@
#include "catalog/pg_proc.h" #include "catalog/pg_proc.h"
#include "libpq/libpq.h" #include "libpq/libpq.h"
#include "libpq/pqformat.h" #include "libpq/pqformat.h"
#include "miscadmin.h"
#include "tcop/fastpath.h" #include "tcop/fastpath.h"
#include "utils/acl.h" #include "utils/acl.h"
#include "utils/lsyscache.h" #include "utils/lsyscache.h"

View File

@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $Id: c.h,v 1.134 2002/12/16 16:22:46 tgl Exp $ * $Id: c.h,v 1.135 2003/01/09 18:00:24 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
@ -358,7 +358,7 @@ typedef float float4;
typedef double float8; typedef double float8;
/* /*
* Oid, RegProcedure, TransactionId, CommandId * Oid, RegProcedure, TransactionId, CommandId, AclId
*/ */
/* typedef Oid is in postgres_ext.h */ /* typedef Oid is in postgres_ext.h */
@ -376,6 +376,8 @@ typedef uint32 CommandId;
#define FirstCommandId ((CommandId) 0) #define FirstCommandId ((CommandId) 0)
typedef int32 AclId; /* user and group identifiers */
/* /*
* Array indexing support * Array indexing support
*/ */

View File

@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $Id: pg_conversion.h,v 1.8 2002/12/04 05:18:35 momjian Exp $ * $Id: pg_conversion.h,v 1.9 2003/01/09 18:00:24 tgl Exp $
* *
* NOTES * NOTES
* the genbki.sh script reads this file and generates .bki * the genbki.sh script reads this file and generates .bki
@ -19,8 +19,6 @@
#ifndef PG_CONVERSION_H #ifndef PG_CONVERSION_H
#define PG_CONVERSION_H #define PG_CONVERSION_H
#include "miscadmin.h"
/* ---------------- /* ----------------
* postgres.h contains the system type definitions and the * postgres.h contains the system type definitions and the
* CATALOG(), BOOTSTRAP and DATA() sugar words so this file * CATALOG(), BOOTSTRAP and DATA() sugar words so this file

View File

@ -7,14 +7,13 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $Id: typecmds.h,v 1.3 2003/01/06 00:31:44 tgl Exp $ * $Id: typecmds.h,v 1.4 2003/01/09 18:00:24 tgl Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
#ifndef TYPECMDS_H #ifndef TYPECMDS_H
#define TYPECMDS_H #define TYPECMDS_H
#include "miscadmin.h"
#include "nodes/parsenodes.h" #include "nodes/parsenodes.h"

View File

@ -12,7 +12,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $Id: miscadmin.h,v 1.114 2002/12/09 18:21:43 tgl Exp $ * $Id: miscadmin.h,v 1.115 2003/01/09 18:00:24 tgl Exp $
* *
* NOTES * NOTES
* some of the information in this file should be moved to * some of the information in this file should be moved to
@ -176,7 +176,7 @@ extern bool EnableSSL;
extern bool SilentMode; extern bool SilentMode;
extern int MaxBackends; extern int MaxBackends;
extern int ReservedBackends; extern int ReservedBackends;
extern int NBuffers; extern DLLIMPORT int NBuffers;
extern int PostPortNumber; extern int PostPortNumber;
extern int Unix_socket_permissions; extern int Unix_socket_permissions;
extern char *Unix_socket_group; extern char *Unix_socket_group;
@ -200,13 +200,7 @@ extern char *ExpandDatabasePath(const char *path);
extern void SetDatabaseName(const char *name); extern void SetDatabaseName(const char *name);
extern void SetDatabasePath(const char *path); extern void SetDatabasePath(const char *path);
/*
* AclId system identifier for the user, group, etc.
*/
typedef int32 AclId;
extern char *GetUserNameFromId(AclId userid); extern char *GetUserNameFromId(AclId userid);
extern AclId GetUserId(void); extern AclId GetUserId(void);
extern void SetUserId(AclId userid); extern void SetUserId(AclId userid);
extern AclId GetSessionUserId(void); extern AclId GetSessionUserId(void);

View File

@ -5,14 +5,12 @@
* *
* Copyright (c) 2001, PostgreSQL Global Development Group * Copyright (c) 2001, PostgreSQL Global Development Group
* *
* $Id: pgstat.h,v 1.11 2002/12/05 04:04:51 momjian Exp $ * $Id: pgstat.h,v 1.12 2003/01/09 18:00:24 tgl Exp $
* ---------- * ----------
*/ */
#ifndef PGSTAT_H #ifndef PGSTAT_H
#define PGSTAT_H #define PGSTAT_H
#include "miscadmin.h"
/* ---------- /* ----------
* Paths for the statistics files. The %s is replaced with the * Paths for the statistics files. The %s is replaced with the
* installations $PGDATA. * installations $PGDATA.

View File

@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $Id: acl.h,v 1.49 2002/12/05 04:04:51 momjian Exp $ * $Id: acl.h,v 1.50 2003/01/09 18:00:24 tgl Exp $
* *
* NOTES * NOTES
* For backward-compatibility purposes we have to allow there * For backward-compatibility purposes we have to allow there
@ -22,11 +22,12 @@
#ifndef ACL_H #ifndef ACL_H
#define ACL_H #define ACL_H
#include "miscadmin.h"
#include "nodes/parsenodes.h" #include "nodes/parsenodes.h"
#include "utils/array.h" #include "utils/array.h"
/* typedef AclId is declared in c.h */
#define ACL_ID_WORLD 0 /* placeholder for id in a WORLD acl item */ #define ACL_ID_WORLD 0 /* placeholder for id in a WORLD acl item */
/* /*