mirror of
https://github.com/postgres/postgres.git
synced 2025-07-30 11:03:19 +03:00
2nd try for the ARC strategy.
I added a couple more Assertions while tracking down the exact cause of the former bug. All 93 regression tests pass now. Jan
This commit is contained in:
@ -10,7 +10,7 @@
|
||||
* Written by Peter Eisentraut <peter_e@gmx.net>.
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.168 2003/11/13 05:34:58 wieck Exp $
|
||||
* $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.169 2003/11/13 14:57:15 wieck Exp $
|
||||
*
|
||||
*--------------------------------------------------------------------
|
||||
*/
|
||||
@ -73,6 +73,7 @@ extern int CheckPointTimeout;
|
||||
extern int CommitDelay;
|
||||
extern int CommitSiblings;
|
||||
extern char *preload_libraries_string;
|
||||
extern int BufferStrategyStatInterval;
|
||||
|
||||
#ifdef HAVE_SYSLOG
|
||||
extern char *Syslog_facility;
|
||||
@ -1190,6 +1191,15 @@ static struct config_int ConfigureNamesInt[] =
|
||||
-1, -1, INT_MAX / 1000, NULL, NULL
|
||||
},
|
||||
|
||||
{
|
||||
{"buffer_strategy_status_interval", PGC_POSTMASTER, RESOURCES_MEM,
|
||||
gettext_noop("Interval to report buffer strategy status in seconds"),
|
||||
NULL
|
||||
},
|
||||
&BufferStrategyStatInterval,
|
||||
0, 0, 600, NULL, NULL
|
||||
},
|
||||
|
||||
/* End-of-list marker */
|
||||
{
|
||||
{NULL, 0, 0, NULL, NULL}, NULL, 0, 0, 0, NULL, NULL
|
||||
|
Reference in New Issue
Block a user