Fix some trailing whitespace in documentation files
authorPeter Eisentraut
Sat, 16 Apr 2022 07:05:07 +0000 (09:05 +0200)
committerPeter Eisentraut
Sat, 16 Apr 2022 07:05:07 +0000 (09:05 +0200)
doc/src/sgml/adminpack.sgml
doc/src/sgml/custom-rmgr.sgml
doc/src/sgml/func.sgml
doc/src/sgml/high-availability.sgml
doc/src/sgml/pgwalinspect.sgml
doc/src/sgml/ref/pgbench.sgml
doc/src/sgml/runtime.sgml

index 5702456cd253cd14e5e7290ebd367a0e9843dc75..40cab29b247674d71d8fd8d54eb477244aa26fff 100644 (file)
@@ -22,7 +22,7 @@
   functions in , which
   provide read-only access.)
   Only files within the database cluster directory can be accessed, unless the
-  user is a superuser or given privileges of one of the pg_read_server_files, 
+  user is a superuser or given privileges of one of the pg_read_server_files,
   or pg_write_server_files roles, as appropriate for the function, but either a
   relative or absolute path is allowable.
  
index dd917c54b620195c89ebe74a5b68334403d48211..acf5077d7513067ac13e2e3301c0bacd3da725ce 100644 (file)
@@ -55,7 +55,7 @@ typedef struct RmgrData
     void        (*rm_decode) (struct LogicalDecodingContext *ctx,
                               struct XLogRecordBuffer *buf);
 } RmgrData;
-  
+
  
  
   Then, register your new resource
@@ -88,7 +88,7 @@ extern void RegisterCustomRmgr(RmgrId rmid, RmgrData *rmgr);
   during PostgreSQL startup.
  
  
-       
+   
     The extension must remain in shared_preload_libraries as long as any
     custom WAL records may exist in the system. Otherwise
     PostgreSQL will not be able to apply or decode
index 93ba39eff10a2d2e5fd018b15d8fe28837ffbb32..489184a4f043810a4fa385cdf320944f21578b47 100644 (file)
@@ -17758,7 +17758,7 @@ $.* ? (@ like_regex "^\\d+$")
      Notes
      
       Alternatively, you can construct JSON values simply
-      using PostgreSQL-specific casts to 
+      using PostgreSQL-specific casts to
       json and jsonb types.
      
     
@@ -19127,7 +19127,7 @@ FROM my_films;
 SELECT
     JSON_QUERY(js, '$.favorites[*].kind' ERROR ON ERROR)
 FROM my_films;
-ERROR: more than one SQL/JSON item 
+ERROR: more than one SQL/JSON item
 
 
      
@@ -19175,7 +19175,7 @@ SELECT JSON_QUERY(jsonb '"aaa"', '$' RETURNING text OMIT QUOTES);
 
 
 expression
-  IS  NOT  JSON 
+  IS  NOT  JSON
    { VALUE | SCALAR | ARRAY | OBJECT } 
    { WITH | WITHOUT } UNIQUE  KEYS  
 
@@ -19294,16 +19294,16 @@ SELECT JSON_QUERY(jsonb '"aaa"', '$' RETURNING text OMIT QUOTES);
      
      
 SELECT
-    js, 
-    js IS JSON "is json", 
+    js,
+    js IS JSON "is json",
     js IS NOT JSON "is not json",
     js IS JSON SCALAR "is scalar",
     js IS JSON OBJECT "is object",
     js IS JSON ARRAY "is array"
-FROM 
+FROM
     (VALUES ('123'), ('"abc"'), ('{"a": "b"}'), ('[1,2]'), ('abc')) foo(js);
 
-     js     | is json | is not json | is scalar | is object | is array 
+     js     | is json | is not json | is scalar | is object | is array
 ------------+---------+-------------+-----------+-----------|-------------
  123        | t       | f           | t         | f         | f
  "abc"      | t       | f           | t         | f         | f
@@ -19704,7 +19704,7 @@ where json_table_column is:
     
 
     
-     Use CROSS JOIN, so that the output includes 
+     Use CROSS JOIN, so that the output includes
      a row for every possible combination of rows from the left-hand
      and the right-hand columns.
     
@@ -19743,7 +19743,7 @@ where json_table_column is:
       some JSON data about the films and create a view that
       distributes the film genre, title, and director between separate columns:
 
-SELECT jt.* FROM 
+SELECT jt.* FROM
  my_films,
  JSON_TABLE ( js, '$.favorites[*]' COLUMNS (
    id FOR ORDINALITY,
@@ -19864,7 +19864,7 @@ JSON_SERIALIZE (
      Notes
      
       Alternatively, you can construct JSON values simply
-      using PostgreSQL-specific casts to 
+      using PostgreSQL-specific casts to
       json and jsonb types.
      
     
index b0a653373d3d0becbb198c504916064ff89acc37..db1bde47064ba856d757f2dac5bbd23e0ef07b70 100644 (file)
@@ -548,7 +548,7 @@ protocol to make nodes agree on a serializable transactional order.
    rollforward will take considerably longer, so that technique only
    offers a solution for disaster recovery, not high availability.
    A standby server can also be used for read-only queries, in which case
-   it is called a hot standby server. See 
+   it is called a hot standby server. See
     for more information.
   
 
index 44010a5b0a3114eda3fbf435b5729a3acb9b94b8..c1d4fbc66cd38a8a9c2aee21d61a81ce742dbf37 100644 (file)
@@ -150,7 +150,7 @@ postgres=# select start_lsn, end_lsn, prev_lsn, xid, resource_manager, record_ty
     
      
       This function is same as pg_get_wal_records_info()
-      except that it gets information of all the valid WAL records from 
+      except that it gets information of all the valid WAL records from
       start_lsn till the end of WAL.
      
     
index 1a630f020bd6acaa72edf7111b767aaf5cf03132..387a836287012eeea69352b1f37a242a87d80d5b 100644 (file)
@@ -69,7 +69,7 @@ tps = 896.967014 (without initial connection time)
   The first seven lines report some of the most important parameter
   settings.
   The sixth line reports the maximum number of tries for transactions with
-  serialization or deadlock errors (see  
+  serialization or deadlock errors (see 
   for more information).
   The eighth line reports the number of transactions completed
   and intended (the latter being just the product of number of clients
index f5f4e3fab512a432b4ec6bf998c0c2f1e5f45c4a..4465c876b18791c800661c1f6108df47c2acddab 100644 (file)
@@ -2194,7 +2194,7 @@ pg_dumpall -p 5432 | psql -d postgres -p 5433
    TLS protocol. SSL protocols are the
    precursors to TLS protocols, and the term
    SSL is still used for encrypted connections even though
-   SSL protocols are no longer supported. 
+   SSL protocols are no longer supported.
    SSL is used interchangeably with TLS
    in PostgreSQL.