diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2010-04-07 06:12:52 +0000 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2010-04-07 06:12:52 +0000 |
commit | 370f770c15a4c08094298685887d8a512267c369 (patch) | |
tree | 34adb5188a1bd16c4f6e7937a78db9604bc783f2 /doc/src | |
parent | 9c40543c02f2acb4e7ffd6ad732fccc0f725ef80 (diff) | |
download | postgresql-370f770c15a4c08094298685887d8a512267c369.tar.gz postgresql-370f770c15a4c08094298685887d8a512267c369.zip |
Forbid using pg_xlogfile_name() and pg_xlogfile_name_offset() during
recovery. We might want to relax this in the future, but ThisTimeLineID
isn't currently correct in backends during recovery, so the filename
returned was wrong.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/func.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 4aa78728e3b..7a18c92d312 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.512 2010/04/03 07:53:02 petere Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.513 2010/04/07 06:12:52 heikki Exp $ --> <chapter id="functions"> <title>Functions and Operators</title> @@ -13064,8 +13064,8 @@ SELECT set_config('log_statement_stats', 'off', false); <para> The functions shown in <xref linkend="functions-admin-backup-table"> assist in making on-line backups. - Use of the first three functions is restricted to superusers. The first - five functions cannot be executed during recovery. + These functions cannot be executed during recovery. + Use of the first three functions is restricted to superusers. </para> <table id="functions-admin-backup-table"> |