mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Make TriggerFile variable static. It's not used outside xlog.c.
Fujii Masao
This commit is contained in:
@ -7,7 +7,7 @@
|
||||
* Portions Copyright (c) 1996-2010, PostgreSQL Global Development Group
|
||||
* Portions Copyright (c) 1994, Regents of the University of California
|
||||
*
|
||||
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.420 2010/06/10 07:00:27 heikki Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/access/transam/xlog.c,v 1.421 2010/06/10 07:49:23 heikki Exp $
|
||||
*
|
||||
*-------------------------------------------------------------------------
|
||||
*/
|
||||
@ -190,7 +190,7 @@ static TimestampTz recoveryLastXTime = 0;
|
||||
/* options taken from recovery.conf for XLOG streaming */
|
||||
static bool StandbyMode = false;
|
||||
static char *PrimaryConnInfo = NULL;
|
||||
char *TriggerFile = NULL;
|
||||
static char *TriggerFile = NULL;
|
||||
|
||||
/* if recoveryStopsHere returns true, it saves actual stop xid/time here */
|
||||
static TransactionId recoveryStopXid;
|
||||
|
Reference in New Issue
Block a user