]> granicus.if.org Git - postgresql/blob - src/backend/utils/init/globals.c
Bring in a patch from Keith Parks to move the use of European dates
[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.5 1997/01/26 15:31:29 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 int             EuroDates = 0;
69
70 char *IndexedCatalogNames[] = {
71     AttributeRelationName,
72     ProcedureRelationName,
73     TypeRelationName,
74     RelationRelationName,
75     0
76 };
77
78
79 /* ----------------
80  * we just do a linear search now so there's no requirement that the list
81  * be ordered.  The list is so small it shouldn't make much difference.
82  * make sure the list is null-terminated
83  *              - jolly 8/19/95
84  *                                  
85  * OLD COMMENT
86  *      WARNING  WARNING  WARNING  WARNING  WARNING  WARNING
87  *
88  *      keep SharedSystemRelationNames[] in SORTED order!  A binary search
89  *      is done on it in catalog.c!
90  *
91  *      XXX this is a serious hack which should be fixed -cim 1/26/90
92  * ----------------
93  */
94 char *SharedSystemRelationNames[] = {
95     DatabaseRelationName, 
96     DefaultsRelationName,
97     DemonRelationName,
98     GroupRelationName,
99     HostsRelationName,
100     LogRelationName,
101     MagicRelationName,
102     ServerRelationName,
103     TimeRelationName,
104     UserRelationName,
105     VariableRelationName,
106     0
107 };