mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
XLOG file archiving and point-in-time recovery. There are still some
loose ends and a glaring lack of documentation, but it basically works. Simon Riggs with some editorialization by Tom Lane.
This commit is contained in:
@ -10,7 +10,7 @@
|
||||
* Written by Peter Eisentraut <peter_e@gmx.net>.
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.219 2004/07/12 02:22:51 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.220 2004/07/19 02:47:10 tgl Exp $
|
||||
*
|
||||
*--------------------------------------------------------------------
|
||||
*/
|
||||
@ -1371,6 +1371,15 @@ static struct config_real ConfigureNamesReal[] =
|
||||
|
||||
static struct config_string ConfigureNamesString[] =
|
||||
{
|
||||
{
|
||||
{"archive_command", PGC_SIGHUP, WAL_SETTINGS,
|
||||
gettext_noop("WAL archiving command."),
|
||||
gettext_noop("The shell command that will be called to archive a WAL file.")
|
||||
},
|
||||
&XLogArchiveCommand,
|
||||
"", NULL, NULL
|
||||
},
|
||||
|
||||
{
|
||||
{"client_encoding", PGC_USERSET, CLIENT_CONN_LOCALE,
|
||||
gettext_noop("Sets the client's character set encoding."),
|
||||
|
Reference in New Issue
Block a user