doc: add commas after 'i.e.' and 'e.g.'
authorBruce Momjian
Mon, 31 Aug 2020 22:33:37 +0000 (18:33 -0400)
committerBruce Momjian
Mon, 31 Aug 2020 22:33:37 +0000 (18:33 -0400)
This follows the American format,
https://jakubmarian.com/comma-after-i-e-and-e-g/. There is no intention
of requiring this format for future text, but making existing text
consistent every few years makes sense.

Discussion: https://postgr.es/m/20200825183619[email protected]

Backpatch-through: 9.5

43 files changed:
doc/src/sgml/bki.sgml
doc/src/sgml/config.sgml
doc/src/sgml/datatype.sgml
doc/src/sgml/ddl.sgml
doc/src/sgml/ecpg.sgml
doc/src/sgml/extend.sgml
doc/src/sgml/func.sgml
doc/src/sgml/high-availability.sgml
doc/src/sgml/indexam.sgml
doc/src/sgml/install-windows.sgml
doc/src/sgml/libpq.sgml
doc/src/sgml/monitoring.sgml
doc/src/sgml/mvcc.sgml
doc/src/sgml/parallel.sgml
doc/src/sgml/perform.sgml
doc/src/sgml/protocol.sgml
doc/src/sgml/queries.sgml
doc/src/sgml/ref/create_database.sgml
doc/src/sgml/ref/create_event_trigger.sgml
doc/src/sgml/ref/create_function.sgml
doc/src/sgml/ref/create_procedure.sgml
doc/src/sgml/ref/create_statistics.sgml
doc/src/sgml/ref/create_table.sgml
doc/src/sgml/ref/initdb.sgml
doc/src/sgml/ref/pg_dump.sgml
doc/src/sgml/ref/pg_dumpall.sgml
doc/src/sgml/ref/pg_restore.sgml
doc/src/sgml/ref/pg_rewind.sgml
doc/src/sgml/ref/pgbench.sgml
doc/src/sgml/ref/pgupgrade.sgml
doc/src/sgml/ref/postgres-ref.sgml
doc/src/sgml/ref/prepare.sgml
doc/src/sgml/ref/psql-ref.sgml
doc/src/sgml/replication-origins.sgml
doc/src/sgml/runtime.sgml
doc/src/sgml/sepgsql.sgml
doc/src/sgml/sources.sgml
doc/src/sgml/sslinfo.sgml
doc/src/sgml/tableam.sgml
doc/src/sgml/textsearch.sgml
doc/src/sgml/wal.sgml
doc/src/sgml/xfunc.sgml
doc/src/sgml/xml2.sgml

index cf2e11f6aab08cd761ab55d8fff951a843b26618..4eb89bd8b90de86cb2d282cbf5fb79d729f58137 100644 (file)
       Use of symbolic references is enabled in a particular catalog column
       by attaching BKI_LOOKUP(lookuprule)
       to the column's definition, where lookuprule
-      is the name of the referenced catalog, e.g. pg_proc.
+      is the name of the referenced catalog, e.g., pg_proc.
       BKI_LOOKUP can be attached to columns of
       type Oidregprocoidvector,
       or Oid[]; in the latter two cases it implies performing a
index 659234096a276fa5ba8bad3a3d448e0a7be5be9f..fb48a5fcd03858b59203ad87cd9cc4496ed5b8db 100644 (file)
@@ -424,7 +424,7 @@ include_dir 'directory'
       start with the . character are also ignored, to
       prevent mistakes since such files are hidden on some platforms.  Multiple
       files within an include directory are processed in file name order
-      (according to C locale rules, i.e. numbers before letters, and
+      (according to C locale rules, i.e., numbers before letters, and
       uppercase letters before lowercase ones).
      
 
@@ -1090,7 +1090,7 @@ include_dir 'conf.d'
        
         With this parameter enabled, you can still create ordinary global
         users.  Simply append @ when specifying the user
-        name in the client, e.g. joe@.  The @
+        name in the client, e.g., joe@.  The @
         will be stripped off before the user name is looked up by the
         server.
        
@@ -3168,7 +3168,7 @@ include_dir 'conf.d'
         disabled, but the server continues to accumulate WAL segment files in
         the expectation that a command will soon be provided.  Setting
         archive_command to a command that does nothing but
-        return true, e.g. /bin/true (REM on
+        return true, e.g., /bin/true (REM on
         Windows), effectively disables
         archiving, but also breaks the chain of WAL files needed for
         archive recovery, so it should only be used in unusual circumstances.
@@ -3413,7 +3413,7 @@ restore_command = 'copy "C:\\server\\archivedir\\%f" "%p"'  # Windows
       
        
         This parameter specifies that recovery should end as soon as a
-        consistent state is reached, i.e. as early as possible. When restoring
+        consistent state is reached, i.e., as early as possible. When restoring
         from an online backup, this means the point where taking the backup
         ended.
        
@@ -3459,7 +3459,7 @@ restore_command = 'copy "C:\\server\\archivedir\\%f" "%p"'  # Windows
          variable has been set
         earlier in the configuration file).  Preferred style is to use a
         numeric offset from UTC, or you can write a full time zone name,
-        e.g. Europe/Helsinki not EEST.
+        e.g., Europe/Helsinki not EEST.
        
       
      
@@ -4766,7 +4766,7 @@ ANY num_sync ( 
         if your data is likely to be completely in cache, such as when
         the database is smaller than the total server memory, decreasing
         random_page_cost can be appropriate.  Storage that has a low random
-        read cost relative to sequential, e.g. solid-state drives, might
+        read cost relative to sequential, e.g., solid-state drives, might
         also be better modeled with a lower value for random_page_cost,
         e.g., 1.1.
        
@@ -8651,7 +8651,7 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
         rows that can be locked; that value is unlimited.  The default,
         64, has historically proven sufficient, but you might need to
         raise this value if you have queries that touch many different
-        tables in a single transaction, e.g. query of a parent table with
+        tables in a single transaction, e.g., query of a parent table with
         many children.  This parameter can only be set at server start.
        
 
@@ -9147,7 +9147,7 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir'
         with assertions enabled. That is the case if the
         macro USE_ASSERT_CHECKING is defined
         when PostgreSQL is built (accomplished
-        e.g. by the configure option
+        e.g., by the configure option
         ). By
         default PostgreSQL is built without
         assertions.
index f652a67ede3234137fc513e6501834c693bf3a45..9bf26ffcfd7981c8bdc40a3e0aa54498f352136b 100644 (file)
      very large number of digits. It is especially recommended for
      storing monetary amounts and other quantities where exactness is
      required.  Calculations with numeric values yield exact
-     results where possible, e.g.  addition, subtraction, multiplication.
+     results where possible, e.g.,  addition, subtraction, multiplication.
      However, calculations on numeric values are very slow
      compared to the integer types, or to the floating-point types
      described in the next section.
@@ -4931,7 +4931,7 @@ SELECT * FROM pg_attribute
 
        
         unknown
-        Identifies a not-yet-resolved type, e.g. of an undecorated
+        Identifies a not-yet-resolved type, e.g., of an undecorated
          string literal.
        
 
index a5a2e60946913d08d287a30ddc57a44809a39900..0c2aedc361a6d6e3fa2004d2ab8139ba247abb73 100644 (file)
@@ -1338,7 +1338,7 @@ ALTER TABLE products ADD COLUMN description text;
     
 
     
-     However, if the default value is volatile (e.g.
+     However, if the default value is volatile (e.g.,
      clock_timestamp())
      each row will need to be updated with the value calculated at the time
      ALTER TABLE is executed. To avoid a potentially
@@ -1826,7 +1826,7 @@ REVOKE ALL ON accounts FROM PUBLIC;
        schema (assuming that the objects' own privilege requirements are
        also met).  Essentially this allows the grantee to look up
        objects within the schema.  Without this permission, it is still
-       possible to see the object names, e.g. by querying system catalogs.
+       possible to see the object names, e.g., by querying system catalogs.
        Also, after revoking this permission, existing sessions might have
        statements that have previously performed this lookup, so this is not
        a completely secure way to prevent object access.
index 5df659cbd37cd09cab83da7d871591e6ce878d48..d3bc8e375862c0ee7a5de8cf205881acd6669aff 100644 (file)
@@ -3689,7 +3689,7 @@ EXEC SQL DEALLOCATE DESCRIPTOR identifier;
 EXEC SQL FETCH NEXT FROM mycursor INTO SQL DESCRIPTOR mydesc;
 
     If the result set is empty, the Descriptor Area will still contain
-    the metadata from the query, i.e. the field names.
+    the metadata from the query, i.e., the field names.
    
 
    
@@ -4106,7 +4106,7 @@ typedef struct sqlvar_struct sqlvar_t;
          sqllen
           
            
-            Contains the binary length of the field. e.g. 4 bytes for ECPGt_int.
+            Contains the binary length of the field. e.g., 4 bytes for ECPGt_int.
            
           
          
@@ -8044,7 +8044,7 @@ EXEC SQL CLOSE DATABASE;
       FREE cursor_name
       
        
-        Due to the differences how ECPG works compared to Informix's ESQL/C (i.e. which steps
+        Due to the differences how ECPG works compared to Informix's ESQL/C (i.e., which steps
         are purely grammar transformations and which steps rely on the underlying run-time library)
         there is no FREE cursor_name statement in ECPG. This is because in ECPG,
         DECLARE CURSOR doesn't translate to a function call into
index 9dbd59ae1217309799276c8de2665fdb616dd5e5..53f2638e18b3959e062f1a59fea94be8e6eee745 100644 (file)
        
         An extension is relocatable if it is possible to move
         its contained objects into a different schema after initial creation
-        of the extension.  The default is false, i.e. the
+        of the extension.  The default is false, i.e., the
         extension is not relocatable.
         See  for more information.
        
@@ -1466,7 +1466,7 @@ include $(PGXS)
       NO_INSTALLCHECK
       
        
-        don't define an installcheck target, useful e.g. if tests require special configuration, or don't use pg_regress
+        don't define an installcheck target, useful e.g., if tests require special configuration, or don't use pg_regress
        
       
      
index cd1c4ebd764f7638580e3878cf1842c3c562cf74..dcda4525102478511c8513069df1944dd3879aff 100644 (file)
@@ -6685,9 +6685,9 @@ SELECT regexp_match('abc01234xyz', '(?:(.*?)(\d+)(.*)){1,1}');
      
       
        In to_timestamp and to_date,
-       if the year format specification is less than four digits, e.g.
+       if the year format specification is less than four digits, e.g.,
        YYY, and the supplied year is less than four digits,
-       the year will be adjusted to be nearest to the year 2020, e.g.
+       the year will be adjusted to be nearest to the year 2020, e.g.,
        95 becomes 1995.
       
      
@@ -10173,7 +10173,7 @@ CREATE TYPE rainbow AS ENUM ('red', 'orange', 'yellow', 'green', 'blue', 'purple
           "string" (to include all string values), "numeric" (to include all numeric values in the string format),
           "boolean" (to include all Boolean values in the string format "true"/"false"),
           "key" (to include all keys) or "all" (to include all above). These values
-          can be combined together to include, e.g. all string and numeric values.
+          can be combined together to include, e.g., all string and numeric values.
         
         json_to_tsvector('english', '{"a": "The Fat Rats", "b": 123}'::json, '["string", "numeric"]')
         '123':5 'fat':2 'rat':3
@@ -22374,7 +22374,7 @@ FOR EACH ROW EXECUTE FUNCTION suppress_redundant_updates_trigger();
        
         objsubid
         integer
-        Sub-object ID (e.g. attribute number for a column)
+        Sub-object ID (e.g., attribute number for a column)
        
        
         command_tag
@@ -22461,7 +22461,7 @@ FOR EACH ROW EXECUTE FUNCTION suppress_redundant_updates_trigger();
        
         objsubid
         integer
-        Sub-object ID (e.g. attribute number for a column)
+        Sub-object ID (e.g., attribute number for a column)
        
        
         original
index 01eff5012c25bc26f780fb8d2e182090c87482bc..f133fb388a23100d561e6cc6fe8d5d978926e669 100644 (file)
@@ -219,7 +219,7 @@ protocol to make nodes agree on a serializable transactional order.
      this is unacceptable, either the middleware or the application
      must query such values from a single server and then use those
      values in write queries.  Another option is to use this replication
-     option with a traditional master-standby setup, i.e. data modification
+     option with a traditional master-standby setup, i.e., data modification
      queries are sent only to the master and are propagated to the
      standby servers via master-standby replication, not by the replication
      middleware.  Care must also be taken that all
@@ -657,7 +657,7 @@ protocol to make nodes agree on a serializable transactional order.
     Set up continuous archiving on the primary to an archive directory
     accessible from the standby, as described
     in . The archive location should be
-    accessible from the standby even when the master is down, i.e. it should
+    accessible from the standby even when the master is down, i.e., it should
     reside on the standby server itself or another trusted server, not on
     the master server.
    
@@ -2222,7 +2222,7 @@ LOG:  database system is ready to accept read only connections
       
        
         
-         Data Definition Language (DDL) - e.g. CREATE INDEX
+         Data Definition Language (DDL) - e.g., CREATE INDEX
         
        
        
@@ -2288,7 +2288,7 @@ LOG:  database system is ready to accept read only connections
 
    
     WAL file control commands will not work during recovery,
-    e.g. pg_start_backuppg_switch_wal etc.
+    e.g., pg_start_backuppg_switch_wal etc.
    
 
    
index dd54c6880241a5501631dd2506b1554892ce80c3..85518f6e7954b5aaeef03a25627a2a4ce7d6a043 100644 (file)
@@ -379,7 +379,7 @@ amcanreturn (Relation indexRelation, int attno);
    linkend="indexes-index-only-scans">index-only scans on
    the given column, by returning the indexed column values for an index entry
    in the form of an IndexTuple.  The attribute number
-   is 1-based, i.e. the first column's attno is 1. Returns true if supported,
+   is 1-based, i.e., the first column's attno is 1. Returns true if supported,
    else false.  If the access method does not support index-only scans at all,
    the amcanreturn field in its IndexAmRoutine
    struct can be set to NULL.
index bb76b04d32bd546be96b5597fdda67058b83d196..93f02a3043185405ee4748d0dcf05f03cc489486 100644 (file)
   same purpose.
   From the Visual Studio Command Prompt, you can
   change the targeted CPU architecture, build type, and target OS by using the
-  vcvarsall.bat command, e.g.
+  vcvarsall.bat command, e.g.,
   vcvarsall.bat x64 10.0.10240.0 to target Windows 10
   with a 64-bit release build. See -help for the other
   options of vcvarsall.bat. All commands should be run from
@@ -251,7 +251,7 @@ $ENV{MSBFLAGS}="/m";
         installations C:\Program Files\GnuWin32.
         Consider installing into C:\GnuWin32 or use the
         NTFS short name path to GnuWin32 in your PATH environment setting
-        (e.g. C:\PROGRA~1\GnuWin32).
+        (e.g., C:\PROGRA~1\GnuWin32).
        
      
 
index c443cc87d1da7fe911086b4539dc83ceb2b5847c..e2e1e80923a0a5d5b7b95a62499049bf451b78ee 100644 (file)
@@ -355,7 +355,7 @@ PostgresPollingStatusType PQconnectPoll(PGconn *conn);
        Conversely, if PQconnectPoll(conn) last returned
        PGRES_POLLING_WRITING, wait until the socket is ready
        to write, then call PQconnectPoll(conn) again.
-       On the first iteration, i.e. if you have yet to call
+       On the first iteration, i.e., if you have yet to call
        PQconnectPoll, behave as if it last returned
        PGRES_POLLING_WRITING.  Continue this loop until
        PQconnectPoll(conn) returns
@@ -860,7 +860,7 @@ postgresql:///mydb?host=localhost&port=5433
 
    
     Percent-encoding may be used to include symbols with special meaning in any
-    of the URI parts, e.g. replace = with
+    of the URI parts, e.g., replace = with
     %3D.
 
    
@@ -919,7 +919,7 @@ postgresql://%2Fvar%2Flib%2Fpostgresql/dbname
        hostaddr, and port options accept a comma-separated
        list of values. The same number of elements must be given in each
        option that is specified, such
-       that e.g. the first hostaddr corresponds to the first host name,
+       that e.g., the first hostaddr corresponds to the first host name,
        the second hostaddr corresponds to the second host name, and so
        forth. As an exception, if only one port is specified, it
        applies to all the hosts.
@@ -947,7 +947,7 @@ postgresql://%2Fvar%2Flib%2Fpostgresql/dbname
      
        If a password file is used, you can have different passwords for
        different hosts. All the other connection options are the same for every
-       host in the list; it is not possible to e.g. specify different
+       host in the list; it is not possible to e.g., specify different
        usernames for different hosts.
      
    
@@ -1123,7 +1123,7 @@ postgresql://%2Fvar%2Flib%2Fpostgresql/dbname
       
       
        Maximum wait for connection, in seconds (write as a decimal integer,
-       e.g. 10).  Zero, negative, or not specified means
+       e.g., 10).  Zero, negative, or not specified means
        wait indefinitely.  The minimum allowed timeout is 2 seconds, therefore
        a value of 1 is interpreted as 2.
        This timeout applies separately to each host name or IP address.
@@ -2332,7 +2332,7 @@ const char *PQsslAttribute(const PGconn *conn, const char *attribute_name);
          cipher
           
            
-            A short name of the ciphersuite used, e.g.
+            A short name of the ciphersuite used, e.g.,
             "DHE-RSA-DES-CBC3-SHA". The names are specific
             to each SSL implementation.
            
@@ -4981,7 +4981,7 @@ int PQflush(PGconn *conn);
    PQflush again.  Repeat until
    PQflush returns 0.  (It is necessary to check for
    read-ready and drain the input with PQconsumeInput,
-   because the server can block trying to send us data, e.g. NOTICE
+   because the server can block trying to send us data, e.g., NOTICE
    messages, and won't read our data until we read its.)  Once
    PQflush returns 0, wait for the socket to be
    read-ready and then read the response as described above.
@@ -8049,7 +8049,7 @@ ldap://ldap.acme.com/cn=dbserver,cn=hosts?pgconnectinfo?base?(objectclass=*)
    For a connection to be known SSL-secured, SSL usage must be configured
    on both the client and the server before the connection
    is made. If it is only configured on the server, the client may end up
-   sending sensitive information (e.g. passwords) before
+   sending sensitive information (e.g., passwords) before
    it knows that the server requires high security. In libpq, secure
    connections can be ensured
    by setting the sslmode parameter to verify-full or
index 82097d29b400402c27feaf59598fe01777f7b4e1..c95bbb9e5a7d6ee7ce481a039597811d9da20d10 100644 (file)
@@ -206,7 +206,7 @@ postgres   27093  0.0  0.0  30096  2752 ?        Ss   11:34   0:00 postgres: ser
    When the server shuts down cleanly, a permanent copy of the statistics
    data is stored in the pg_stat subdirectory, so that
    statistics can be retained across server restarts.  When recovery is
-   performed at server start (e.g. after immediate shutdown, server crash,
+   performed at server start (e.g., after immediate shutdown, server crash,
    and point-in-time recovery), all statistics counters are reset.
   
 
index 8f192af4607afa06f98b15b385becd3d8da4717c..1567180b0de9c0ccdc6f921603fc2408ecdc05c9 100644 (file)
    
     In PostgreSQL, you can request any of
     the four standard transaction isolation levels, but internally only
-    three distinct isolation levels are implemented, i.e. PostgreSQL's
+    three distinct isolation levels are implemented, i.e., PostgreSQL's
     Read Uncommitted mode behaves like Read Committed.  This is because
     it is the only sensible way to map the standard isolation levels to
     PostgreSQL's multiversion concurrency control architecture.
index 95306287e2030b186e941170da01c9a732cad5b7..41b9d0d6ac2bdbf6ea0a8cca8cc96cb1982ea8bb 100644 (file)
@@ -433,7 +433,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%';
     .  Of course, this plan may turn
     out to be slower than the serial plan which the planner preferred, but
     this will not always be the case.  If you don't get a parallel
-    plan even with very small values of these settings (e.g. after setting
+    plan even with very small values of these settings (e.g., after setting
     them both to zero), there may be some reason why the query planner is
     unable to generate a parallel plan for your query.  See
      and
@@ -531,7 +531,7 @@ EXPLAIN SELECT * FROM pgbench_accounts WHERE filler LIKE '%x%';
   
     Functions and aggregates must be marked PARALLEL UNSAFE if
     they write to the database, access sequences, change the transaction state
-    even temporarily (e.g. a PL/pgSQL function which establishes an
+    even temporarily (e.g., a PL/pgSQL function which establishes an
     EXCEPTION block to catch errors), or make persistent changes to
     settings.  Similarly, functions must be marked PARALLEL
     RESTRICTED if they access temporary tables, client connection state,
index 0f61b0995d3d8abc678594e960b63d34647b3dc6..8ee340f67d73db24965287157ebc849cf304dbbd 100644 (file)
@@ -1891,7 +1891,7 @@ SELECT * FROM x, y, a, b, c WHERE something AND somethingelse;
      
       
        Place the database cluster's data directory in a memory-backed
-       file system (i.e. RAM disk).  This eliminates all
+       file system (i.e., RAM disk).  This eliminates all
        database disk I/O, but limits data storage to the amount of
        available memory (and perhaps swap).
       
index 15e841548239d1726e4986090606541647db4c9b..b3c21296449bdb37f31b2a901e56457dd8865a85 100644 (file)
@@ -28,7 +28,7 @@
   the server, the connection will be rejected (for example, this would occur
   if the client requested protocol version 4.0, which does not exist as of
   this writing).  If the minor version requested by the client is not
-  supported by the server (e.g. the client requests version 3.1, but the
+  supported by the server (e.g., the client requests version 3.1, but the
   server supports only 3.0), the server may either reject the connection or
   may respond with a NegotiateProtocolVersion message containing the highest
   minor protocol version which it supports.  The client may then choose either
         by the client, but does support an earlier version of the protocol;
         this message indicates the highest supported minor version.  This
         message will also be sent if the client requested unsupported protocol
-        options (i.e. beginning with _pq_.) in the
+        options (i.e., beginning with _pq_.) in the
         startup packet.  This message will be followed by an ErrorResponse or
         a message indicating the success or failure of authentication.
        
index 22252556be22178da83d081a273395ef26c9df05..56539c9fdd985a0dc65c43203d06ff938df00c85 100644 (file)
@@ -1256,7 +1256,7 @@ GROUPING SETS (
     ( )
 )
 
-    This is commonly used for analysis over hierarchical data; e.g. total
+    This is commonly used for analysis over hierarchical data; e.g., total
     salary by department, division, and company-wide total.
    
 
@@ -1265,7 +1265,7 @@ GROUPING SETS (
 
 CUBE ( e1e2, ... )
 
-    represents the given list and all of its possible subsets (i.e. the power
+    represents the given list and all of its possible subsets (i.e., the power
     set).  Thus
 
 CUBE ( a, b, c )
index a3b2e98b467da73dcc54bd7a340d7da4484ebed7..88e93ea2a15bf2399f19c9891a9f4617629015ff 100644 (file)
@@ -116,7 +116,7 @@ CREATE DATABASE name
       
        
         Collation order (LC_COLLATE) to use in the new database.
-        This affects the sort order applied to strings, e.g. in queries with
+        This affects the sort order applied to strings, e.g., in queries with
         ORDER BY, as well as the order used in indexes on text columns.
         The default is to use the collation order of the template database.
         See below for additional restrictions.
@@ -128,7 +128,7 @@ CREATE DATABASE name
       
        
         Character classification (LC_CTYPE) to use in the new
-        database. This affects the categorization of characters, e.g. lower,
+        database. This affects the categorization of characters, e.g., lower,
         upper and digit. The default is to use the character classification of
         the template database. See below for additional restrictions.
        
index 52ba746166be3d907f14901491b63a4001ac817a..becd31bcadf7c1362bd4e0c0804b26df323712e9 100644 (file)
@@ -86,7 +86,7 @@ CREATE EVENT TRIGGER name
       A list of values for the
       associated filter_variable
       for which the trigger should fire.  For TAG, this means a
-      list of command tags (e.g. 'DROP FUNCTION').
+      list of command tags (e.g., 'DROP FUNCTION').
      
     
    
index f81cedc8233ed01c0ee5fb034e4886a7f64ec4de..97285b757841606fa1a77acd21babbf3b884ee10 100644 (file)
@@ -257,7 +257,7 @@ CREATE [ OR REPLACE ] FUNCTION
        The name of the language that the function is implemented in.
        It can be sqlc,
        internal, or the name of a user-defined
-       procedural language, e.g. plpgsql.  Enclosing the
+       procedural language, e.g., plpgsql.  Enclosing the
        name in single quotes is deprecated and requires matching case.
       
      
@@ -431,11 +431,11 @@ CREATE [ OR REPLACE ] FUNCTION
       Functions should be labeled parallel unsafe if they modify any database
       state, or if they make changes to the transaction such as using
       sub-transactions, or if they access sequences or attempt to make
-      persistent changes to settings (e.g. setval).  They should
+      persistent changes to settings (e.g., setval).  They should
       be labeled as parallel restricted if they access temporary tables,
       client connection state, cursors, prepared statements, or miscellaneous
       backend-local state which the system cannot synchronize in parallel mode
-      (e.g.  setseed cannot be executed other than by the group
+      (e.g.,  setseed cannot be executed other than by the group
       leader because a change made by another process would not be reflected
       in the leader).  In general, if a function is labeled as being safe when
       it is restricted or unsafe, or if it is labeled as being restricted when
index 0ea6513cb588ed9f19aace6476d4da445cf82636..d225695626cbf173a92b8acfc2b4127972676587 100644 (file)
@@ -164,7 +164,7 @@ CREATE [ OR REPLACE ] PROCEDURE
        The name of the language that the procedure is implemented in.
        It can be sqlc,
        internal, or the name of a user-defined
-       procedural language, e.g. plpgsql.  Enclosing the
+       procedural language, e.g., plpgsql.  Enclosing the
        name in single quotes is deprecated and requires matching case.
       
      
index 5b583aacb4336123d678f1263efc8b6ddf22beb6..4363be50c3c4d5e42bb3a0d6902efbee19690372 100644 (file)
@@ -131,7 +131,7 @@ CREATE STATISTICS [ IF NOT EXISTS ] statistics_na
   Examples
 
   
-   Create table t1 with two functionally dependent columns, i.e.
+   Create table t1 with two functionally dependent columns, i.e.,
    knowledge of a value in the first column is sufficient for determining the
    value in the other column. Then functional dependency statistics are built
    on those columns:
index d6f9f21c2bf0264b06742a4e7574cf6d1c076eb3..63ea024b0c00599a0122939ab7506bed88f25316 100644 (file)
@@ -903,7 +903,7 @@ WITH ( MODULUS numeric_literal, REM
       one or more columns on which the uniqueness is not enforced.
       Note that although the constraint is not enforced on the included columns,
       it still depends on them.  Consequently, some operations on these columns
-      (e.g. DROP COLUMN) can cause cascaded constraint and
+      (e.g., DROP COLUMN) can cause cascaded constraint and
       index deletion.
      
     
@@ -949,7 +949,7 @@ WITH ( MODULUS numeric_literal, REM
       of columns to be specified which will be included in the non-key portion
       of the index.  Although uniqueness is not enforced on the included columns,
       the constraint still depends on them. Consequently, some operations on the
-      included columns (e.g. DROP COLUMN) can cause cascaded
+      included columns (e.g., DROP COLUMN) can cause cascaded
       constraint and index deletion.
      
     
index a04a180165007aefd34ff3b21f4b6493c00b7a03..af76dbede486f76c95ac59129d0f56c8a5f415fd 100644 (file)
@@ -88,7 +88,7 @@ PostgreSQL documentation
    initdb initializes the database cluster's default
    locale and character set encoding. The character set encoding,
    collation order (LC_COLLATE) and character set classes
-   (LC_CTYPE, e.g. upper, lower, digit) can be set separately
+   (LC_CTYPE, e.g., upper, lower, digit) can be set separately
    for a database when it is created. initdb determines
    those settings for the template1 database, which will
    serve as the default for all other databases.
index 13bd320b3135a45e5e92c7d5c671032e42da16c0..6dfc9e23b1a2b0aa73f588af698275801d6286a7 100644 (file)
@@ -760,7 +760,7 @@ PostgreSQL documentation
       
       
        
-        Use conditional commands (i.e. add an IF EXISTS
+        Use conditional commands (i.e., add an IF EXISTS
         clause) when cleaning database objects.  This option is not valid
         unless  is also specified.
        
index f0859896c547a3c06b1e53e5feffd533dbecbbc3..4eec13237ae89bb0dbeaf0b3d34fa36c80f733b0 100644 (file)
@@ -323,7 +323,7 @@ PostgreSQL documentation
       
       
        
-        Use conditional commands (i.e. add an IF EXISTS
+        Use conditional commands (i.e., add an IF EXISTS
         clause) to drop databases and other objects.  This option is not valid
         unless  is also specified.
        
index b60207d05b0f5dc08be7c866bd23048c8641f4ee..d724e45f8b0d35295c18f930fed0895301488f4f 100644 (file)
@@ -572,7 +572,7 @@ PostgreSQL documentation
       
       
        
-        Use conditional commands (i.e. add an IF EXISTS
+        Use conditional commands (i.e., add an IF EXISTS
         clause) to drop database objects.  This option is not valid
         unless  is also specified.
        
index 76a0c7327ad0db45cdfdfadf7b195027c0c1a94e..304b58e25ca89e2a29e6c972133fcb4cd6fa366f 100644 (file)
@@ -71,7 +71,7 @@ PostgreSQL documentation
    copied from the WAL archive to the pg_wal directory, or
    fetched on startup by configuring  or
    .  The use of
-   pg_rewind is not limited to failover, e.g.  a standby
+   pg_rewind is not limited to failover, e.g.,  a standby
    server can be promoted, run some write transactions, and then rewinded
    to become a standby again.
   
index 26774e1d25abf50c18d4173da30457737dfd73c3..b32b962a6066ffaa9469a40afc3dcd85956c10c6 100644 (file)
@@ -568,7 +568,7 @@ pgbench  options  d
         transaction to finish. The wait time is called the schedule lag time,
         and its average and maximum are also reported separately. The
         transaction latency with respect to the actual transaction start time,
-        i.e. the time spent executing the transaction in the database, can be
+        i.e., the time spent executing the transaction in the database, can be
         computed by subtracting the schedule lag time from the reported
         latency.
        
@@ -718,7 +718,7 @@ pgbench  options  d
         client per thread and there are no external or data dependencies.
         From a statistical viewpoint reproducing runs exactly is a bad idea because
         it can hide the performance variability or improve performance unduly,
-        e.g. by hitting the same pages as a previous run.
+        e.g., by hitting the same pages as a previous run.
         However, it may also be of great help for debugging, for instance
         re-running a tricky case which leads to an error.
         Use wisely.
@@ -738,7 +738,7 @@ pgbench  options  d
        
         Remember to take the sampling rate into account when processing the
         log file. For example, when computing TPS values, you need to multiply
-        the numbers accordingly (e.g. with 0.01 sample rate, you'll only get
+        the numbers accordingly (e.g., with 0.01 sample rate, you'll only get
         1/100 of the actual TPS).
        
       
@@ -1567,7 +1567,7 @@ f(x) = PHI(2.0 * parameter * (x - mu) / (max - min + 1)) /
       2.0 / parameter, that is a relative
       1.0 / parameter around the mean; for instance, if
       parameter is 4.0, 67% of values are drawn from the
-      middle quarter (1.0 / 4.0) of the interval (i.e. from
+      middle quarter (1.0 / 4.0) of the interval (i.e., from
       3.0 / 8.0 to 5.0 / 8.0) and 95% from
       the middle half (2.0 / 4.0) of the interval (second and third
       quartiles). The minimum allowed parameter
@@ -1762,7 +1762,7 @@ END;
    and max_lag, are only present if the 
    option is used.
    They provide statistics about the time each transaction had to wait for the
-   previous one to finish, i.e. the difference between each transaction's
+   previous one to finish, i.e., the difference between each transaction's
    scheduled start time and the time it actually started.
    The very last field, skipped,
    is only present if the  option is used, too.
index 63cb5cbc67c95158c68e26433f0e0b0cbc33a8de..361374274d65129ea88b0b3da81792f62bd2dc12 100644 (file)
@@ -41,8 +41,8 @@ PostgreSQL documentation
   pg_upgrade (formerly called pg_migrator) allows data
   stored in PostgreSQL data files to be upgraded to a later PostgreSQL
   major version without the data dump/reload typically required for
-  major version upgrades, e.g. from 9.5.8 to 9.6.4 or from 10.7 to 11.2.
-  It is not required for minor version upgrades, e.g. from 9.6.2 to 9.6.3
+  major version upgrades, e.g., from 9.5.8 to 9.6.4 or from 10.7 to 11.2.
+  It is not required for minor version upgrades, e.g., from 9.6.2 to 9.6.3
   or from 10.1 to 10.2.
  
 
@@ -60,7 +60,7 @@ PostgreSQL documentation
 
  
   pg_upgrade does its best to
-  make sure the old and new clusters are binary-compatible, e.g.  by
+  make sure the old and new clusters are binary-compatible, e.g.,  by
   checking for compatible compile-time settings, including 32/64-bit
   binaries.  It is important that
   any external modules are also binary compatible, though this cannot
@@ -238,13 +238,13 @@ PostgreSQL documentation
     Optionally move the old cluster
 
     
-     If you are using a version-specific installation directory, e.g.
+     If you are using a version-specific installation directory, e.g.,
      /opt/PostgreSQL/&majorversion;, you do not need to move the old cluster. The
      graphical installers all use version-specific installation directories.
     
 
     
-     If your installation directory is not version-specific, e.g.
+     If your installation directory is not version-specific, e.g.,
      /usr/local/pgsql, it is necessary to move the current PostgreSQL install
      directory so it does not interfere with the new PostgreSQL installation.
      Once the current PostgreSQL server is shut down, it is safe to rename the
@@ -302,9 +302,9 @@ make prefix=/usr/local/pgsql.new install
 
     
      Install any custom shared object files (or DLLs) used by the old cluster
-     into the new cluster, e.g. pgcrypto.so,
+     into the new cluster, e.g., pgcrypto.so,
      whether they are from contrib
-     or some other source. Do not install the schema definitions, e.g.
+     or some other source. Do not install the schema definitions, e.g.,
      CREATE EXTENSION pgcrypto, because these will be upgraded
      from the old cluster.
      Also, any custom full text search files (dictionary, synonym,
@@ -515,7 +515,7 @@ pg_upgrade.exe
 
       
        Save any configuration files from the old standbys' configuration
-       directories you need to keep, e.g.  postgresql.conf
+       directories you need to keep, e.g.,  postgresql.conf
        (and any files included by it), postgresql.auto.conf,
        pg_hba.conf, because these will be overwritten
        or removed in the next step.
@@ -542,7 +542,7 @@ rsync --archive --delete --hard-links --size-only --no-inc-recursive old_cluster
        on the standby.  The directory structure under the specified
        directories on the primary and standbys must match.  Consult the
        rsync manual page for details on specifying the
-       remote directory, e.g.
+       remote directory, e.g.,
 
 
 rsync --archive --delete --hard-links --size-only --no-inc-recursive /opt/PostgreSQL/9.5 \
@@ -668,7 +668,7 @@ psql --username=postgres --file=script.sql postgres
      pg_upgrade completes. (Automatic deletion is not
      possible if you have user-defined tablespaces inside the old data
      directory.)  You can also delete the old installation directories
-     (e.g. binshare).
+     (e.g., binshare).
     
    
 
@@ -786,7 +786,7 @@ psql --username=postgres --file=script.sql postgres
    If you are upgrading a pre-PostgreSQL 9.2 cluster
    that uses a configuration-file-only directory, you must pass the
    real data directory location to pg_upgrade, and
-   pass the configuration directory location to the server, e.g.
+   pass the configuration directory location to the server, e.g.,
    -d /real-data-directory -o '-D /configuration-directory'.
   
 
@@ -808,7 +808,7 @@ psql --username=postgres --file=script.sql postgres
    copy with any changes to make it consistent.  (
    is necessary because rsync only has file modification-time
    granularity of one second.)  You might want to exclude some
-   files, e.g. postmaster.pid, as documented in 
+   files, e.g., postmaster.pid, as documented in 
    linkend="backup-lowlevel-base-backup"/>.  If your file system supports
    file system snapshots or copy-on-write file copies, you can use that
    to make a backup of the old cluster and tablespaces, though the snapshot
index 1a4b7c7825d540a3b2b60c83818694ee98f41fa8..394dd26699602b03a45e83f700a32d206cb4ba7b 100644 (file)
@@ -822,7 +822,7 @@ PostgreSQL documentation
 
   
    To start postgres with a specific
-   port, e.g. 1234:
+   port, e.g., 1234:
 
 $ postgres -p 1234
 
index 4e5e96a4014d09c29f135fdfe92bc2bddc0f1fc6..aeecb08ccfa5a274b007f7734ef1915e3c282a4b 100644 (file)
@@ -73,7 +73,7 @@ PREPARE name [ ( 
    Prepared statements potentially have the largest performance advantage
    when a single session is being used to execute a large number of similar
    statements. The performance difference will be particularly
-   significant if the statements are complex to plan or rewrite, e.g.
+   significant if the statements are complex to plan or rewrite, e.g.,
    if the query involves a join of many tables or requires
    the application of several rules. If the statement is relatively simple
    to plan and rewrite but relatively expensive to execute, the
index b0335b9592bfbab1e958f61c1ccc22480142b2bb..9543b072c6309b750e904d8fd85198f136635c8e 100644 (file)
@@ -636,7 +636,7 @@ EOF
 
   
    psql returns 0 to the shell if it
-   finished normally, 1 if a fatal error of its own occurs (e.g. out of memory,
+   finished normally, 1 if a fatal error of its own occurs (e.g., out of memory,
    file not found), 2 if the connection to the server went bad
    and the session was not interactive, and 3 if an error occurred in a
    script and the variable ON_ERROR_STOP was set.
@@ -2888,7 +2888,7 @@ lo_import 152801
           In latex-longtable format, this controls
           the proportional width of each column containing a left-aligned
           data type.  It is specified as a whitespace-separated list of values,
-          e.g. '0.2 0.2 0.6'.  Unspecified output columns
+          e.g., '0.2 0.2 0.6'.  Unspecified output columns
           use the last specified value.
           
           
@@ -4330,7 +4330,7 @@ testdb=> \set PROMPT1 '%[%033[1;33;40m%]%n@%/%R%[%033[0m%]%# '
     psql starts up. Tab-completion is also
     supported, although the completion logic makes no claim to be an
     SQL parser.  The queries generated by tab-completion
-    can also interfere with other SQL commands, e.g. SET
+    can also interfere with other SQL commands, e.g., SET
     TRANSACTION ISOLATION LEVEL.
     If for some reason you do not like the tab completion, you
     can turn it off by putting this in a file named
index a03ce76e2ef36c1369bb94a4af0c64ce5c00fae3..7e02c4605b25f33a843f77290c2b08333e957777 100644 (file)
@@ -31,7 +31,7 @@
   which is what should be used to refer to the origin across systems, is
   free-form text. It should be used in a way that makes conflicts
   between replication origins created by different replication solutions
-  unlikely; e.g. by prefixing the replication solution's name to it.
+  unlikely; e.g., by prefixing the replication solution's name to it.
   The OID is used only to avoid having to store the long version
   in situations where space efficiency is important. It should never be shared
   across systems.
@@ -68,7 +68,7 @@
   manner. Replay progress for all replication origins can be seen in the
   
    pg_replication_origin_status
-   view. An individual origin's progress, e.g. when resuming
+   view. An individual origin's progress, e.g., when resuming
   replication, can be acquired using
   pg_replication_origin_progress()
   for any origin or
@@ -86,7 +86,7 @@
   output plugin callbacks (see )
   generated by the session is tagged with the replication origin of the
   generating session.  This allows treating them differently in the output
-  plugin, e.g. ignoring all but locally-originating rows.  Additionally
+  plugin, e.g., ignoring all but locally-originating rows.  Additionally
   the 
   filter_by_origin_cb callback can be used
   to filter the logical decoding change stream based on the
index 6801a1aecce4c0d212b7dd4ca9b2532c51c049ca..4aabfe5a40435855bbed8d19546161bc266192ed 100644 (file)
@@ -1996,7 +1996,7 @@ pg_dumpall -p 5432 | psql -d postgres -p 5433
     be migrated in-place from one major PostgreSQL
     version to another.  Upgrades can be performed in minutes,
     particularly with  mode.  It requires steps similar to
-    pg_dumpall above, e.g.  starting/stopping the server,
+    pg_dumpall above, e.g.,  starting/stopping the server,
     running initdb.  The pg_upgrade 
     linkend="pgupgrade">documentation outlines the necessary steps.
    
index f8c99e1b002501243ef0840b52f88c228668bba8..64cde0adb56d0dd6873193f6135bb4aeb475114c 100644 (file)
@@ -527,7 +527,7 @@ UPDATE t1 SET x = 2, y = func1(y) WHERE z = 100;
     commands. SELinux provides a feature to allow trusted
     code to run using a security label different from that of the client,
     generally for the purpose of providing highly controlled access to
-    sensitive data (e.g. rows might be omitted, or the precision of stored
+    sensitive data (e.g., rows might be omitted, or the precision of stored
     values might be reduced).  Whether or not a function acts as a trusted
     procedure is controlled by its security label and the operating system
     security policy.  For example:
index 730430c8641102cfdf8e33116decab2bbea4d400..ed448a3785fa1508603721b5d1dea494c0431264 100644 (file)
@@ -913,7 +913,7 @@ BETTER: unrecognized node type: 42
     
      Both, macros with arguments and static inline
      functions, may be used. The latter are preferable if there are
-     multiple-evaluation hazards when written as a macro, as e.g. the
+     multiple-evaluation hazards when written as a macro, as e.g., the
      case with
 
 #define Max(x, y)       ((x) > (y) ? (x) : (y))
@@ -924,7 +924,7 @@ BETTER: unrecognized node type: 42
     
     
      When the definition of an inline function references symbols
-     (i.e. variables, functions) that are only available as part of the
+     (i.e., variables, functions) that are only available as part of the
      backend, the function may not be visible when included from frontend
      code.
 
index 78ff83d6422523d30b4a5efd84e2174b8b3542c6..e5d7cff97aacbeebe123e3035314e9374c61d4d4 100644 (file)
@@ -52,7 +52,7 @@
     
     
     
-     Returns the name of the protocol used for the SSL connection (e.g. TLSv1.0
+     Returns the name of the protocol used for the SSL connection (e.g., TLSv1.0
      TLSv1.1, or TLSv1.2).
     
     
@@ -68,7 +68,7 @@
     
     
      Returns the name of the cipher used for the SSL connection
-     (e.g. DHE-RSA-AES256-SHA).
+     (e.g., DHE-RSA-AES256-SHA).
     
     
    
index efd141d3f5cc1899a634308658ae27dabf697bb8..a4fed6ea577af748ffdc0f4bf8bf4989ca53394b 100644 (file)
@@ -77,7 +77,7 @@
   necessary for each tuple to have a tuple identifier (TID)
   consisting of a block number and an item number (see also 
   linkend="storage-page-layout"/>).  It is not strictly necessary that the
-  sub-parts of TIDs have the same meaning they e.g. have
+  sub-parts of TIDs have the same meaning they e.g., have
   for heap, but if bitmap scan support is desired (it is
   optional), the block number needs to provide locality.
  
index 64d079742cb6c7723f320a731c93b018d9b97e4d..15bac0dfdad5361a04381c4132cadcddfffc1850 100644 (file)
@@ -3687,7 +3687,7 @@ SELECT plainto_tsquery('supernovae stars');
   
 
   
-   A GiST index can be covering, i.e. use the INCLUDE
+   A GiST index can be covering, i.e., use the INCLUDE
    clause.  Included columns can have data types without any GiST operator
    class.  Included attributes will be stored uncompressed.
   
@@ -3713,7 +3713,7 @@ SELECT plainto_tsquery('supernovae stars');
    allows the implementation of very fast searches with online update.
    Partitioning can be done at the database level using table inheritance,
    or by distributing documents over
-   servers and collecting external search results, e.g. via 
+   servers and collecting external search results, e.g., via 
    linkend="ddl-foreign-data">Foreign Data access.
    The latter is possible because ranking functions use
    only local information.
index bd9fae544c1dfb7bd8ca0a1d97ee7226197952d7..a94edf4d8b6279cafbd5c2429947a2764f1e36c5 100644 (file)
      overhead can reduce performance, especially if journaling
      causes file system data to be flushed
      to disk.  Fortunately, data flushing during journaling can
-     often be disabled with a file system mount option, e.g.
+     often be disabled with a file system mount option, e.g.,
      data=writeback on a Linux ext3 file system.
      Journaled file systems do improve boot speed after a crash.
     
index 9d94094bc1858bb53659a53f8207c23a186de800..33c5b827959ec4de91322670c68b8ae72e53535d 100644 (file)
      Besides SELECT queries, the commands can include data
      modification queries (INSERT,
      UPDATE, and DELETE), as well as
-     other SQL commands. (You cannot use transaction control commands, e.g.
+     other SQL commands. (You cannot use transaction control commands, e.g.,
      COMMITSAVEPOINT, and some utility
-     commands, e.g.  VACUUM, in SQL functions.)
+     commands, e.g.,  VACUUM, in SQL functions.)
      However, the final command
      must be a SELECT or have a RETURNING
      clause that returns whatever is
@@ -3359,7 +3359,7 @@ if (!ptr)
         exceptions.  Any exceptions must be caught and appropriate errors
         passed back to the C interface.  If possible, compile C++ with
          to eliminate exceptions entirely; in such
-        cases, you must check for failures in your C++ code, e.g.  check for
+        cases, you must check for failures in your C++ code, e.g.,  check for
         NULL returned by new().
        
       
index 560faa000ecdc1bd89d2f9899fd73cffc7416b55..f5346336104ab50cad68d4972e7a15135d6728dc 100644 (file)
@@ -327,7 +327,7 @@ AS t(article_id integer, author text, page_count integer, title text);
    The calling SELECT statement doesn't necessarily have to be
    just SELECT * — it can reference the output
    columns by name or join them to other tables. The function produces a
-   virtual table with which you can perform any operation you wish (e.g.
+   virtual table with which you can perform any operation you wish (e.g.,
    aggregation, joining, sorting etc). So we could also have:
 
 SELECT t.title, p.fullname, p.email