From 06004319be74709ae8684260f0f130e86128a9ed Mon Sep 17 00:00:00 2001 From: Magnus Hagander Date: Tue, 28 Dec 2010 10:46:03 +0100 Subject: [PATCH] Fix list of functions that are restricted to superusers Move the list of what's restricted to superusers into the table itself, so it doesn't get missed again. --- doc/src/sgml/func.sgml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/doc/src/sgml/func.sgml b/doc/src/sgml/func.sgml index 1485ac0551..6005acc234 100644 --- a/doc/src/sgml/func.sgml +++ b/doc/src/sgml/func.sgml @@ -13939,7 +13939,6 @@ SELECT set_config('log_statement_stats', 'off', false); The functions shown in assist in making on-line backups. These functions cannot be executed during recovery. - Use of the first three functions is restricted to superusers. @@ -13970,21 +13969,21 @@ SELECT set_config('log_statement_stats', 'off', false); pg_start_backup(label text , fast boolean )text - Prepare for performing on-line backup + Prepare for performing on-line backup (restricted to superusers) pg_stop_backup() text - Finish performing on-line backup + Finish performing on-line backup (restricted to superusers) pg_switch_xlog() text - Force switch to a new transaction log file + Force switch to a new transaction log file (restricted to superusers) -- 2.40.0