Fix typos in documentation and for one wait event
authorMichael Paquier <michael@paquier.xyz>
Mon, 14 Jan 2019 23:47:01 +0000 (08:47 +0900)
committerMichael Paquier <michael@paquier.xyz>
Mon, 14 Jan 2019 23:47:01 +0000 (08:47 +0900)
These have been found while cross-checking for the use of unique words
in the documentation, and a wait event was not getting generated in a way
consistent to what the documentation provided.

Author: Alexander Lakhin
Discussion: https://postgr.es/m/9b5a3a85-899a-ae62-dbab-1e7943aa5ab1@gmail.com

doc/src/sgml/file-fdw.sgml
doc/src/sgml/func.sgml
doc/src/sgml/libpq.sgml
doc/src/sgml/ref/pg_dump.sgml
src/backend/postmaster/pgstat.c

index 19be824b039170648edf54d95f0d0a085e49eab9..2413089ffeb3cceb71f23946f7bac10b1a8c91bb 100644 (file)
  <para>
   Changing table-level options requires being a superuser or having the privileges
   of the default role <literal>pg_read_server_files</literal> (to use a filename) or
-  the default role <literal>pg_execute_server_programs</literal> (to use a program),
+  the default role <literal>pg_execute_server_program</literal> (to use a program),
   for security reasons: only certain users should be able to control which file is
   read or which program is run.  In principle regular users could be allowed to
   change the other options, but that's not supported at present.
index 90d67f1acfde46fa86cb964cf60b2ae16dd321e0..4930ec17f62014791493633b17309f0dd632d550 100644 (file)
@@ -16399,7 +16399,7 @@ SET search_path TO <replaceable>schema</replaceable> <optional>, <replaceable>sc
     optional parameter. The return value is <literal>NULL</literal> when the
     log format requested is not a configured
     <xref linkend="guc-log-destination"/>.  The
-    <function>pg_current_logfiles</function> reflects the contents of the
+    <function>pg_current_logfile</function> reflects the contents of the
     <filename>current_logfiles</filename> file.
    </para>
 
index d2e5b08541ecdfce8fabd0ec2e043d26f5fa3acf..c1d1b6b2db344d1e93f370e54afa1da193cc3b83 100644 (file)
@@ -6205,7 +6205,7 @@ char *PQencryptPasswordConn(PGconn *conn, const char *passwd, const char *user,
 char *PQencryptPassword(const char *passwd, const char *user);
 </synopsis>
       <function>PQencryptPassword</function> is an older, deprecated version of
-      <function>PQencryptPasswodConn</function>. The difference is that
+      <function>PQencryptPasswordConn</function>. The difference is that
       <function>PQencryptPassword</function> does not
       require a connection object, and <literal>md5</literal> is always used as the
       encryption algorithm.
index 2015410a421940cde03315393f381856d5cb705f..9e0bb93f08a5585b7fcc60409c93b958c2ac9cd1 100644 (file)
@@ -1290,7 +1290,7 @@ CREATE DATABASE foo WITH TEMPLATE template0;
   <para>
    When dumping logical replication subscriptions,
    <application>pg_dump</application> will generate <command>CREATE
-   SUBSCRIPTION</command> commands that use the <literal>NOCONNECT</literal>
+   SUBSCRIPTION</command> commands that use the <literal>connect = false</literal>
    option, so that restoring the subscription does not make remote connections
    for creating a replication slot or for initial table copy.  That way, the
    dump can be restored without requiring network access to the remote
index d50351547fa488d1ba8766941cbbf6ebf65fc5b1..13da412c59c2b1ecaf42740c666b8c7390615651 100644 (file)
@@ -3799,7 +3799,7 @@ pgstat_get_wait_io(WaitEventIO w)
            event_name = "LockFileCreateSync";
            break;
        case WAIT_EVENT_LOCK_FILE_CREATE_WRITE:
-           event_name = "LockFileCreateWRITE";
+           event_name = "LockFileCreateWrite";
            break;
        case WAIT_EVENT_LOCK_FILE_RECHECKDATADIR_READ:
            event_name = "LockFileReCheckDataDirRead";