Use "alternative" instead of "alternate" where it is clearer.
authorPeter Eisentraut <peter_e@gmx.net>
Wed, 7 Nov 2007 12:24:24 +0000 (12:24 +0000)
committerPeter Eisentraut <peter_e@gmx.net>
Wed, 7 Nov 2007 12:24:24 +0000 (12:24 +0000)
20 files changed:
contrib/dblink/doc/misc
contrib/tsearch2/docs/tsearch2-guide.html
doc/src/sgml/datatype.sgml
doc/src/sgml/ecpg.sgml
doc/src/sgml/ref/create_role.sgml
doc/src/sgml/ref/create_rule.sgml
src/backend/access/common/heaptuple.c
src/backend/access/common/indextuple.c
src/backend/access/heap/heapam.c
src/backend/catalog/pg_operator.c
src/backend/libpq/README.SSL
src/backend/libpq/be-secure.c
src/bin/pg_dump/dumputils.c
src/bin/pg_dump/pg_backup_archiver.h
src/bin/pg_dump/pg_dumpall.c
src/include/access/htup.h
src/include/utils/datetime.h
src/pl/tcl/pltcl.c
src/test/regress/expected/timestamptz.out
src/test/regress/sql/timestamptz.sql

index 2e55ae01c4b6357da0868a718b37b81f8accb722..811c650b22db3474c33dd7558f3cd0f93bec3623 100644 (file)
@@ -63,12 +63,12 @@ Name
 
 dblink_build_sql_insert -- builds an insert statement using a local
                            tuple, replacing the selection key field
-                           values with alternate supplied values
+                           values with alternative supplied values
 dblink_build_sql_delete -- builds a delete statement using supplied
                            values for selection key field values
 dblink_build_sql_update -- builds an update statement using a local
                            tuple, replacing the selection key field
-                           values with alternate supplied values
+                           values with alternative supplied values
 
 
 Synopsis
index d2d764580c7b554c5f0f5ebc124df1903cf5a763..29b7518391d7fe8de4dc19af5ea5e98992dd6d4a 100644 (file)
@@ -701,7 +701,7 @@ simply as a list of lexemes to be included in the vector.
 Their order was lost,
 as was the number of times each lexeme appeared.
 You must keep in mind that directly creating vectors with casting
-is <i>not</i> an alternate means of parsing;
+is <i>not</i> an alternative means of parsing;
 it is a way of directly entering lexemes into a vector <i>without</i> parsing.
 <p>
 Queries can also be created through casting,
index c617468b9fde9ba4b078533a589cbaf8577aa1e1..4382d94463466aefa88761c320545ecfb137c09e 100644 (file)
@@ -1180,7 +1180,7 @@ SELECT b, char_length(b) FROM test2;
     general, to escape an octet, it is converted into the three-digit
     octal number equivalent of its decimal octet value, and preceded
     by two backslashes.  <xref linkend="datatype-binary-sqlesc">
-    shows the characters that must be escaped, and gives the alternate
+    shows the characters that must be escaped, and gives the alternative
     escape sequences where applicable.
    </para>
 
index 5a99619eb672ac507455d8dade9340f51d7dbc87..fa3d508d081434cf38277f5bd7b20326e19946eb 100644 (file)
@@ -1771,7 +1771,7 @@ int PGTYPEStimestamp_fmt_asc(timestamp *ts, char *output, int str_len, char *fmt
            <literal>%Ow</literal> 
            <literal>%OW</literal> 
            <literal>%Oy</literal> 
-           are supposed to provide alternate representations.
+           are supposed to provide alternative representations.
           </para>
           <para>
            Additionally <literal>%OB</literal> implemented to represent
index f24c2658a8820a4361af849e05ddb4dae80a8050..a508063e7d3873c3875740d43e9b843f6adf9df7 100644 (file)
@@ -167,7 +167,7 @@ where <replaceable class="PARAMETER">option</replaceable> can be:
         privileges, but are not users in the usual sense of the word.
         If not specified,
         <literal>NOLOGIN</literal> is the default, except when
-        <command>CREATE ROLE</> is invoked through its alternate spelling
+        <command>CREATE ROLE</> is invoked through its alternative spelling
         <command>CREATE USER</>.
        </para>
       </listitem>
index 798b9b43055b3097aacfecfac20164d7dd1010a0..65c5d568190d55b15d157d5ba52ea80a9932ef82 100644 (file)
@@ -39,7 +39,7 @@ CREATE [ OR REPLACE ] RULE <replaceable class="parameter">name</replaceable> AS
 
   <para>
    The <productname>PostgreSQL</productname> rule system allows one to
-   define an alternate action to be performed on insertions, updates,
+   define an alternative action to be performed on insertions, updates,
    or deletions in database tables.  Roughly speaking, a rule causes
    additional commands to be executed when a given command on a given
    table is executed.  Alternatively, an <literal>INSTEAD</literal>
index 071b9867ebbd05bd4470b57d85747df967f1e7db..daae26762880ef925bd636811289e9e01fc96b80 100644 (file)
@@ -489,7 +489,7 @@ heap_attisnull(HeapTuple tup, int attnum)
  *
  *             This caches attribute offsets in the attribute descriptor.
  *
- *             An alternate way to speed things up would be to cache offsets
+ *             An alternative way to speed things up would be to cache offsets
  *             with the tuple, but that seems more difficult unless you take
  *             the storage hit of actually putting those offsets into the
  *             tuple you send to disk.  Yuck.
index 8a4660c946b6c425afa8edea29e1dbcea3ebc81d..fbe2ebe00164b0bf0388f13aaf93a21c5bc23455 100644 (file)
@@ -186,7 +186,7 @@ index_form_tuple(TupleDesc tupleDescriptor,
  *
  *             This caches attribute offsets in the attribute descriptor.
  *
- *             An alternate way to speed things up would be to cache offsets
+ *             An alternative way to speed things up would be to cache offsets
  *             with the tuple, but that seems more difficult unless you take
  *             the storage hit of actually putting those offsets into the
  *             tuple you send to disk.  Yuck.
index 2a6e2f5c3bd469986250136b0761d1505db2ef7d..a9c0810683ba95ce896ff3a5375a81675cb951e5 100644 (file)
@@ -1056,7 +1056,7 @@ heap_openrv(const RangeVar *relation, LOCKMODE lockmode)
 /* ----------------
  *             heap_beginscan  - begin relation scan
  *
- * heap_beginscan_bm is an alternate entry point for setting up a HeapScanDesc
+ * heap_beginscan_bm is an alternative entry point for setting up a HeapScanDesc
  * for a bitmap heap scan.  Although that scan technology is really quite
  * unlike a standard seqscan, there is just enough commonality to make it
  * worth using the same data structure.
index bc98e9fc1272bc7a3ca6747f6893cb3062b1b354..76d7c86214fd4340a8397a248bfabd4a6ba724d1 100644 (file)
@@ -597,7 +597,7 @@ OperatorCreate(const char *operatorName,
        /*
         * If a commutator and/or negator link is provided, update the other
         * operator(s) to point at this one, if they don't already have a link.
-        * This supports an alternate style of operator definition wherein the
+        * This supports an alternative style of operator definition wherein the
         * user first defines one operator without giving negator or commutator,
         * then defines the other operator of the pair with the proper commutator
         * or negator attribute.  That style doesn't require creation of a shell,
index 9b00a4f0fff259643cfd53afe515cba5bcda19eb..b45d53c82962bbb6f7f9a9ff2e195be64c588a40 100644 (file)
@@ -196,7 +196,7 @@ that establishes an SSH tunnel when the program is launched:
   /usr/bin/ssh -1 -i $IDENTITY -n $HOST 'sleep 60' & \
        /usr/bin/psql -h $HOST -p 5555 $1
 
-Alternately, the system could run a daemon that establishes and maintains
+Alternatively, the system could run a daemon that establishes and maintains
 the tunnel.  This is preferrable when multiple users need to establish
 similar tunnels to the same remote site.
 
index 8d87d70dffa3946ea6d3d3f475d87bddd3d33baf..7214d35096cace61c0f83e6a7fddc802ab5de34c 100644 (file)
@@ -151,7 +151,7 @@ char *SSLCipherSuites = NULL;
  *     unsecured connection without fully informing the user.
  *     Very uncool.
  *
- *     Alternately, the backend could attempt to load these files
+ *     Alternatively, the backend could attempt to load these files
  *     on startup if SSL is enabled - and refuse to start if any
  *     do not exist - but this would tend to piss off DBAs.
  *
index 096930c9503f08fa05148ec1cf75366ecda56a1a..2d8de0abe32903153b66b2fcdf101e1c1ce1e1ce 100644 (file)
@@ -776,7 +776,7 @@ AddAcl(PQExpBuffer aclbuf, const char *keyword)
  * schemavar: name of query variable to match against a schema-name pattern.
  * Can be NULL if no schema.
  * namevar: name of query variable to match against an object-name pattern.
- * altnamevar: NULL, or name of an alternate variable to match against name.
+ * altnamevar: NULL, or name of an alternative variable to match against name.
  * visibilityrule: clause to use if we want to restrict to visible objects
  * (for example, "pg_catalog.pg_table_is_visible(p.oid)").     Can be NULL.
  *
index c7d9b1282b1d75cd71683ee0cced05168167fdbc..50b4bde569bce800a04529c2c3ed54e578c2defb 100644 (file)
@@ -225,7 +225,7 @@ typedef struct _archiveHandle
        StartBlobPtr StartBlobPtr;
        EndBlobPtr EndBlobPtr;
 
-       CustomOutPtr CustomOutPtr;      /* Alternate script output routine */
+       CustomOutPtr CustomOutPtr;      /* Alternative script output routine */
 
        /* Stuff for direct DB connection */
        char       *archdbname;         /* DB name *read* from archive */
index e16684317b9f9a35051791a83d25ca7e5f10e3ce..8b16711d4f910ee16cb6cb5da00ace0ea218faa7 100644 (file)
@@ -507,7 +507,7 @@ help(void)
 
        printf(_("\nConnection options:\n"));
        printf(_("  -h, --host=HOSTNAME      database server host or socket directory\n"));
-       printf(_("  -l, --database=dbname    specify an alternate default database\n"));
+       printf(_("  -l, --database=dbname    specify an alternative default database\n"));
        printf(_("  -p, --port=PORT          database server port number\n"));
        printf(_("  -U, --username=NAME      connect as specified database user\n"));
        printf(_("  -W, --password           force password prompt (should happen automatically)\n"));
index d95fe7f96d2ff25bf48cde63b80c7608b09bcaea..edd8bde4baca003211c050783eadeb905aa0c1f6 100644 (file)
@@ -406,7 +406,7 @@ do { \
 
 
 /*
- * MinimalTuple is an alternate representation that is used for transient
+ * MinimalTuple is an alternative representation that is used for transient
  * tuples inside the executor, in places where transaction status information
  * is not required, the tuple rowtype is known, and shaving off a few bytes
  * is worthwhile because we need to store many tuples. The representation
index d13874537f8373109ba53dc16899ffa703e742ac..379071fb63dd70f4d0bc261a0f303b84281a48c5 100644 (file)
@@ -29,7 +29,7 @@
  * String definitions for standard time quantities.
  *
  * These strings are the defaults used to form output time strings.
- * Other alternate forms are hardcoded into token tables in datetime.c.
+ * Other alternative forms are hardcoded into token tables in datetime.c.
  * ----------------------------------------------------------------
  */
 
index 4b77a40d8e76a8313b8d0c7a13fe4cd0f91d076f..7fbfff8f40503cd25e2e3502970f89a7c842455b 100644 (file)
@@ -505,7 +505,7 @@ pltcl_call_handler(PG_FUNCTION_ARGS)
 
 
 /*
- * Alternate handler for unsafe functions
+ * Alternative handler for unsafe functions
  */
 PG_FUNCTION_INFO_V1(pltclu_call_handler);
 
index e6213a5d9b7b9e6e3091bbb40f5b086122a74491..7c95e53d67127c699f9e9edbd83d60681d75d21f 100644 (file)
@@ -153,7 +153,7 @@ INSERT INTO TIMESTAMPTZ_TBL VALUES ('Feb 16 17:32:01 -0097');
 ERROR:  time zone displacement out of range: "Feb 16 17:32:01 -0097"
 INSERT INTO TIMESTAMPTZ_TBL VALUES ('Feb 16 17:32:01 5097 BC');
 ERROR:  timestamp out of range: "Feb 16 17:32:01 5097 BC"
--- Alternate field order that we've historically supported (sort of)
+-- Alternative field order that we've historically supported (sort of)
 -- with regular and POSIXy timezone specs
 SELECT 'Wed Jul 11 10:51:14 America/New_York 2001'::timestamptz;
          timestamptz          
index 6cac1a33c74b56be5cb0d9fee8af2fe6e515c6cb..7ed0963b009c93dcab98232ebb885fad346c019b 100644 (file)
@@ -127,7 +127,7 @@ INSERT INTO TIMESTAMPTZ_TBL VALUES ('Jan 01 17:32:01 2001');
 INSERT INTO TIMESTAMPTZ_TBL VALUES ('Feb 16 17:32:01 -0097');
 INSERT INTO TIMESTAMPTZ_TBL VALUES ('Feb 16 17:32:01 5097 BC');
 
--- Alternate field order that we've historically supported (sort of)
+-- Alternative field order that we've historically supported (sort of)
 -- with regular and POSIXy timezone specs
 SELECT 'Wed Jul 11 10:51:14 America/New_York 2001'::timestamptz;
 SELECT 'Wed Jul 11 10:51:14 GMT-4 2001'::timestamptz;