Doc: Fix various typos
authorMichael Paquier
Tue, 20 Aug 2019 04:46:08 +0000 (13:46 +0900)
committerMichael Paquier
Tue, 20 Aug 2019 04:46:08 +0000 (13:46 +0900)
All those fixes are already included on HEAD thanks to for example
c96581a and 66bde49, and have gone missing on back-branches.

Author: Alexander Lakhin, Liudmila Mantrova
Discussion: https://postgr.es/m/CAEkD-mDJHV3bhgezu3MUafJLoAKsOOT86+wHukKU8_NeiJYhLQ@mail.gmail.com
Backpatch-through: 9.4

12 files changed:
doc/src/sgml/custom-scan.sgml
doc/src/sgml/ecpg.sgml
doc/src/sgml/func.sgml
doc/src/sgml/gist.sgml
doc/src/sgml/libpq.sgml
doc/src/sgml/plpgsql.sgml
doc/src/sgml/problems.sgml
doc/src/sgml/ref/create_aggregate.sgml
doc/src/sgml/ref/set_role.sgml
doc/src/sgml/sources.sgml
doc/src/sgml/sslinfo.sgml
doc/src/sgml/xplang.sgml

index 5e440d2d154235970bd62ea6be552244c29672a6..e64a3b8e65b4861965d20a754c7696947bafd104 100644 (file)
@@ -83,10 +83,7 @@ typedef struct CustomPath
     by nodeToString, so that debugging routines that attempt to
     print the custom path will work as designed.  methods must
     point to a (usually statically allocated) object implementing the required
-    custom path methods, of which there is currently only one.  The
-    LibraryName and SymbolName fields must also
-    be initialized so that the dynamic loader can resolve them to locate the
-    method table.
+    custom path methods, of which there is currently only one.
   
 
   
index 765a7b6f74d3a1124b29ec14e7b251487326ce86..4c3896f5c5b37ba95abc2ea3230c084ce302b42e 100644 (file)
@@ -4957,7 +4957,7 @@ struct
 
    
     The fields sqlcaid,
-    sqlcabc,
+    sqlabc,
     sqlerrp, and the remaining elements of
     sqlerrd and
     sqlwarn currently contain no useful
index 198f9c220588167b6eb77c75c9b5bede1a5a9797..f3cd3eb4045970c4625241ffd624926373c80d8f 100644 (file)
       
 
       
-       tcvn_to_utf8
+       windows_1258_to_utf8
        WIN1258
        UTF8
       
       
 
       
-       utf8_to_tcvn
+       utf8_to_windows_1258
        UTF8
        WIN1258
       
index b3cc347e5ccc732e44d4ec549b1922f72fd4cb4d..21bb51208821f5069e33a0ce0696d662fc372a2f 100644 (file)
@@ -684,8 +684,8 @@ my_picksplit(PG_FUNCTION_ARGS)
 
         /*
          * Choose where to put the index entries and update unionL and unionR
-         * accordingly. Append the entries to either v_spl_left or
-         * v_spl_right, and care about the counters.
+         * accordingly. Append the entries to either v->spl_left or
+         * v->spl_right, and care about the counters.
          */
 
         if (my_choice_is_left(unionL, curl, unionR, curr))
@@ -896,7 +896,7 @@ Datum
 my_fetch(PG_FUNCTION_ARGS)
 {
     GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
-    input_data_type *in = DatumGetP(entry->key);
+    input_data_type *in = DatumGetPointer(entry->key);
     fetched_data_type *fetched_data;
     GISTENTRY  *retval;
 
@@ -907,7 +907,7 @@ my_fetch(PG_FUNCTION_ARGS)
      * Convert 'fetched_data' into the a Datum of the original datatype.
      */
 
-    /* fill *retval from fetch_data. */
+    /* fill *retval from fetched_data. */
     gistentryinit(*retval, PointerGetDatum(converted_datum),
                   entry->rel, entry->page, entry->offset, FALSE);
 
index badf3b98e9ac08ed8ae4eec8990e9d97021f6e93..47bccca1143230b69868bd7bc5f5ed9a4b81a2c2 100644 (file)
@@ -5743,7 +5743,7 @@ int PQendcopy(PGconn *conn);
        It should either be issued when the  last  string  has  been sent
        to  the  server using PQputline or when the
        last string has been  received  from  the  server using
-       PGgetline.  It must be issued or the server
+       PQgetline.  It must be issued or the server
        will get out of sync with  the client.   Upon return
        from this function, the server is ready to receive the next SQL
        command.  The return value is 0  on  successful  completion,
index bae963bd09e5d985019a5cc79c76749acc063c32..43fbddc069034f2e1b5109df2c3c329ecefcb859 100644 (file)
@@ -3603,7 +3603,7 @@ RAISE unique_violation USING MESSAGE = 'Duplicate user ID: ' || user_id;
    
     If no condition name nor SQLSTATE is specified in a
     RAISE EXCEPTION command, the default is to use
-    RAISE_EXCEPTION (P0001).  If no message
+    ERRCODE_RAISE_EXCEPTION (P0001).  If no message
     text is specified, the default is to use the condition name or
     SQLSTATE as message text.
    
@@ -5419,7 +5419,7 @@ BEGIN
     INSERT INTO cs_active_job(job_id) VALUES (v_job_id);
 
     BEGIN
-        INSERT INTO cs_jobs (job_id, start_stamp) VALUES (v_job_id, sysdate);
+        INSERT INTO cs_jobs (job_id, start_stamp) VALUES (v_job_id, now());
     EXCEPTION
         WHEN dup_val_on_index THEN NULL; -- don't worry if it already exists
     END;
index 764bca1f02951ebdb34e8fe968042d81e21e6a63..5385c60eb09221545f8691881a780bbebb1579a3 100644 (file)
       C library, processor, memory information, and so on. In most
       cases it is sufficient to report the vendor and version, but do
       not assume everyone knows what exactly Debian
-      contains or that everyone runs on i386s. If you have
+      contains or that everyone runs on x86_64. If you have
       installation problems then information about the toolchain on
       your machine (compiler, make, and so
       on) is also necessary.
index 6a8acfb4f9ce2c396e386f9ca2dfbe07e142d1f4..b61fb36855187252ce8766e817146a1fcd8a327c 100644 (file)
@@ -197,7 +197,7 @@ CREATE AGGREGATE name (
    as described in .  This requires
    specifying the MSFUNC, MINVFUNC,
    and MSTYPE parameters, and optionally
-   the MSPACE, MFINALFUNC, MFINALFUNC_EXTRA,
+   the MSSPACE, MFINALFUNC, MFINALFUNC_EXTRA,
    and MINITCOND parameters.  Except for MINVFUNC,
    these parameters work like the corresponding simple-aggregate parameters
    without M; they define a separate implementation of the
index a97ceabcff888b2b5c014d829b0933d7189aee93..6f2843ada1fd74361b706f2292c97c6ce70fabdc 100644 (file)
@@ -70,7 +70,7 @@ RESET ROLE
    effectively drops all the privileges assigned directly to the session user
    and to the other roles it is a member of, leaving only the privileges
    available to the named role.  On the other hand, if the session user role
-   has the NOINHERITS attribute, SET ROLE drops the
+   has the NOINHERIT attribute, SET ROLE drops the
    privileges assigned directly to the session user and instead acquires the
    privileges available to the named role.
   
index 877fcedbb3a31e68387a33a6e0a6b9fc77f3c0b1..9a6bd3ddf1b854c98b5a7d0f6bf946e809bfab1d 100644 (file)
@@ -875,7 +875,7 @@ BETTER: unrecognized node type: 42
     
     
      For example static inline and
-     _StaticAssert() are currently used, even
+     _Static_assert() are currently used, even
      though they are from newer revisions of the C standard. If not
      available we respectively fall back to defining the functions
      without inline, and to using a C89 compatible replacement that
index 7bda33efa328c30436841716a56cf617d34910b0..c949bcf9fa45d13135498eca897ef41202cbaee0 100644 (file)
@@ -180,7 +180,7 @@ countryName (alias C)
 localityName (alias L)
 stateOrProvinceName (alias ST)
 organizationName (alias O)
-organizationUnitName (alias OU)
+organizationalUnitName (alias OU)
 title
 description
 initials
index 4460c8f3611b533b02059d5de34cf17432bfbbe2..76fb42cc6465e6623433ad8a7c69415b0be7b2bd 100644 (file)
@@ -137,7 +137,7 @@ CREATE FUNCTION validator_function_name(oid)
      
       Finally, the PL must be declared with the command
 
-CREATE TRUSTED PROCEDURAL LANGUAGE language-name
+CREATE TRUSTED PROCEDURAL LANGUAGE language_name
     HANDLER handler_function_name
     INLINE inline_function_name
     VALIDATOR validator_function_name ;