]> granicus.if.org Git - postgresql/blob - src/backend/utils/init/globals.c
65ea4b10dd40633a4c5ced778d93b2f772794adc
[postgresql] / src / backend / utils / init / globals.c
1 /*-------------------------------------------------------------------------
2  *
3  * globals.c--
4  *    global variable declarations
5  *
6  * Copyright (c) 1994, Regents of the University of California
7  *
8  *
9  * IDENTIFICATION
10  *    $Header: /cvsroot/pgsql/src/backend/utils/init/globals.c,v 1.6 1997/03/18 16:35:46 scrappy Exp $
11  *
12  * NOTES
13  *    Globals used all over the place should be declared here and not
14  *    in other modules.  
15  *
16  *-------------------------------------------------------------------------
17  */
18 #include <fcntl.h>
19 #include <stdio.h>
20 #include <string.h>
21 #include <sys/file.h>
22 #include <sys/types.h>
23 #include <math.h>
24 #include <unistd.h>
25
26 #include "postgres.h"
27 #include "miscadmin.h"          /* where the declarations go */
28
29 #include <storage/backendid.h>
30 #include "access/heapam.h"
31 #include "utils/tqual.h"
32 #include "storage/sinval.h"
33 #include "storage/sinvaladt.h"
34 #include "storage/lmgr.h"
35 #include "utils/elog.h"
36
37 #include "catalog/catname.h"
38
39 int             Portfd = -1;
40 int             Noversion = 0;
41 int             Quiet = 1;
42
43 int             MasterPid;
44 char            *DataDir;
45   /* The PGDATA directory user says to use, or defaults to via environment
46      variable.  NULL if no option given and no environment variable set 
47   */
48 Relation        reldesc;                /* current relation descriptor */
49     
50 char            OutputFileName[MAXPGPATH] = "";
51
52 BackendId       MyBackendId;
53 BackendTag      MyBackendTag;
54
55 char            *UserName = NULL;
56 char            *DatabaseName = NULL;
57 char            *DatabasePath = NULL;
58
59 bool            MyDatabaseIdIsInitialized = false;
60 Oid             MyDatabaseId = InvalidOid;
61 bool            TransactionInitWasProcessed = false;
62
63 bool            IsUnderPostmaster = false;
64 bool            IsPostmaster = false;
65
66 short           DebugLvl = 0;
67
68 bool            EuroDates = false;
69 bool            HasCTZSet = false;
70 bool            CDayLight = false;
71 int             CTimeZone = 0;
72 char            CTZName[8] = "";
73
74 char *IndexedCatalogNames[] = {
75     AttributeRelationName,
76     ProcedureRelationName,
77     TypeRelationName,
78     RelationRelationName,
79     0
80 };
81
82
83 /* ----------------
84  * we just do a linear search now so there's no requirement that the list
85  * be ordered.  The list is so small it shouldn't make much difference.
86  * make sure the list is null-terminated
87  *              - jolly 8/19/95
88  *                                  
89  * OLD COMMENT
90  *      WARNING  WARNING  WARNING  WARNING  WARNING  WARNING
91  *
92  *      keep SharedSystemRelationNames[] in SORTED order!  A binary search
93  *      is done on it in catalog.c!
94  *
95  *      XXX this is a serious hack which should be fixed -cim 1/26/90
96  * ----------------
97  */
98 char *SharedSystemRelationNames[] = {
99     DatabaseRelationName, 
100     DefaultsRelationName,
101     DemonRelationName,
102     GroupRelationName,
103     HostsRelationName,
104     LogRelationName,
105     MagicRelationName,
106     ServerRelationName,
107     TimeRelationName,
108     UserRelationName,
109     VariableRelationName,
110     0
111 };