diff options
author | Tom Lane | 2009-01-03 20:03:08 +0000 |
---|---|---|
committer | Tom Lane | 2009-01-03 20:03:08 +0000 |
commit | 4605d1c98b305567a7addb22643a9cc7519315e9 (patch) | |
tree | 251a2d897ed7193c3090b85b3aa196f7d7393c7f /src/include/miscadmin.h | |
parent | dad75a62bfb25e3228d1db73e4a06e2c6bd22dd2 (diff) |
Allow loadable modules to create PGC_POSTMASTER GUC variables, but only
when loaded via shared_preload_libraries. Needed for support of
pg_stat_statements, or pretty much anything else that wants a GUC to
control size of a shared memory allocation.
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index ccef61f1bab..e1c1042d681 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -13,7 +13,7 @@ * Portions Copyright (c) 1996-2009, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.207 2009/01/01 17:23:55 momjian Exp $ + * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.208 2009/01/03 20:03:08 tgl Exp $ * * NOTES * some of the information in this file should be moved to other files. @@ -328,6 +328,7 @@ extern void BaseInit(void); /* in utils/init/miscinit.c */ extern bool IgnoreSystemIndexes; +extern PGDLLIMPORT bool process_shared_preload_libraries_in_progress; extern char *shared_preload_libraries_string; extern char *local_preload_libraries_string; |