File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 7
7
*
8
8
*
9
9
* IDENTIFICATION
10
- * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.23 1998/02/23 17 :43:53 scrappy Exp $
10
+ * $Header: /cvsroot/pgsql/src/backend/utils/init/postinit.c,v 1.24 1998/02/23 18 :43:06 scrappy Exp $
11
11
*
12
12
* NOTES
13
13
* InitPostgres() is the function called from PostgresMain
@@ -591,7 +591,8 @@ InitPostgres(char *name) /* database name */
591
591
* initialize local data in cache invalidation stuff
592
592
* ----------------
593
593
*/
594
- InitLocalInvalidateData ();
594
+ if (!bootstrap )
595
+ InitLocalInvalidateData ();
595
596
596
597
/* ----------------
597
598
* ok, all done, now let's make sure we don't do it again.
Original file line number Diff line number Diff line change 6
6
*
7
7
* Copyright (c) 1994, Regents of the University of California
8
8
*
9
- * $Id: acl.h,v 1.13 1998/01/24 22:50:28 momjian Exp $
9
+ * $Id: acl.h,v 1.14 1998/02/23 18:43:13 scrappy Exp $
10
10
*
11
11
* NOTES
12
12
* For backward-compatability purposes we have to allow there
@@ -62,7 +62,7 @@ typedef uint8 AclMode;
62
62
#define ACL_MODECHG_EQL 3
63
63
64
64
/* change this line if you want to set the default acl permission */
65
- #define ACL_WORLD_DEFAULT (ACL_RD )
65
+ #define ACL_WORLD_DEFAULT (ACL_NO )
66
66
/* #define ACL_WORLD_DEFAULT (ACL_RD|ACL_WR|ACL_AP|ACL_RU) */
67
67
#define ACL_OWNER_DEFAULT (ACL_RD|ACL_WR|ACL_AP|ACL_RU)
68
68
You can’t perform that action at this time.
0 commit comments