diff options
| author | Peter Eisentraut | 2024-07-24 04:21:39 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2024-07-24 04:31:07 +0000 |
| commit | 774d47b6c01a8b8111ae390b97343f25ebdf9267 (patch) | |
| tree | d76544c7d7c068fbe6a10635864424b6261f8c4c /src/include/access | |
| parent | 991f8cf8abe244547093ddffcc4b9209076f3525 (diff) | |
Move all extern declarations for GUC variables to header files
Add extern declarations in appropriate header files for global
variables related to GUC. In many cases, this was handled quite
inconsistently before, with some GUC variables declared in a header
file and some only pulled in via ad-hoc extern declarations in various
.c files.
Also add PGDLLIMPORT qualifications to those variables. These were
previously missing because src/tools/mark_pgdllimport.pl has only been
used with header files.
This also fixes -Wmissing-variable-declarations warnings for GUC
variables (not yet part of the standard warning options).
Reviewed-by: Andres Freund <andres@anarazel.de>
Discussion: https://www.postgresql.org/message-id/flat/e0a62134-83da-4ba4-8cdb-ceb0111c95ce@eisentraut.org
Diffstat (limited to 'src/include/access')
| -rw-r--r-- | src/include/access/syncscan.h | 5 | ||||
| -rw-r--r-- | src/include/access/xlog.h | 2 | ||||
| -rw-r--r-- | src/include/access/xlogutils.h | 3 |
3 files changed, 10 insertions, 0 deletions
diff --git a/src/include/access/syncscan.h b/src/include/access/syncscan.h index 00b6c0dfc63..e6ee91fc08a 100644 --- a/src/include/access/syncscan.h +++ b/src/include/access/syncscan.h @@ -17,6 +17,11 @@ #include "storage/block.h" #include "utils/relcache.h" +/* GUC variables */ +#ifdef TRACE_SYNCSCAN +extern PGDLLIMPORT bool trace_syncscan; +#endif + extern void ss_report_location(Relation rel, BlockNumber location); extern BlockNumber ss_get_location(Relation rel, BlockNumber relnblocks); extern void SyncScanShmemInit(void); diff --git a/src/include/access/xlog.h b/src/include/access/xlog.h index c40fd56b291..365a18a08bb 100644 --- a/src/include/access/xlog.h +++ b/src/include/access/xlog.h @@ -52,6 +52,8 @@ extern PGDLLIMPORT bool wal_recycle; extern PGDLLIMPORT bool *wal_consistency_checking; extern PGDLLIMPORT char *wal_consistency_checking_string; extern PGDLLIMPORT bool log_checkpoints; +extern PGDLLIMPORT int CommitDelay; +extern PGDLLIMPORT int CommitSiblings; extern PGDLLIMPORT bool track_wal_io_timing; extern PGDLLIMPORT int wal_decode_buffer_size; diff --git a/src/include/access/xlogutils.h b/src/include/access/xlogutils.h index e24613e8f81..20950ce0336 100644 --- a/src/include/access/xlogutils.h +++ b/src/include/access/xlogutils.h @@ -14,6 +14,9 @@ #include "access/xlogreader.h" #include "storage/bufmgr.h" +/* GUC variable */ +extern PGDLLIMPORT bool ignore_invalid_pages; + /* * Prior to 8.4, all activity during recovery was carried out by the startup * process. This local variable continues to be used in many parts of the |
