From 8f0c1083ddf4536b35e593cf97d3c4fea40f97de Mon Sep 17 00:00:00 2001 From: Marti Raudsepp Date: Mon, 25 Aug 2014 20:25:01 +0300 Subject: [PATCH 3/3] doc: Remove dashes around "newly-", "recently-" --- doc/src/sgml/config.sgml | 2 +- doc/src/sgml/high-availability.sgml | 4 ++-- doc/src/sgml/mvcc.sgml | 2 +- doc/src/sgml/ref/psql-ref.sgml | 2 +- doc/src/sgml/release-8.0.sgml | 6 +++--- doc/src/sgml/release-8.1.sgml | 6 +++--- doc/src/sgml/release-8.2.sgml | 2 +- doc/src/sgml/release-8.3.sgml | 6 +++--- doc/src/sgml/release-8.4.sgml | 4 ++-- doc/src/sgml/release-9.0.sgml | 4 ++-- doc/src/sgml/release-9.1.sgml | 4 ++-- 11 files changed, 21 insertions(+), 21 deletions(-) diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml index f91ab0e..875d29e 100644 --- a/doc/src/sgml/config.sgml +++ b/doc/src/sgml/config.sgml @@ -6432,7 +6432,7 @@ dynamic_library_path = 'C:\tools\postgresql;H:\my_project\lib;$libdir' This controls whether CREATE TABLE and CREATE TABLE AS include an OID column in - newly-created tables, if neither WITH OIDS + newly created tables, if neither WITH OIDS nor WITHOUT OIDS is specified. It also determines whether OIDs will be included in tables created by SELECT INTO. The parameter is off diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml index fc26438..2404209 100644 --- a/doc/src/sgml/high-availability.sgml +++ b/doc/src/sgml/high-availability.sgml @@ -1809,7 +1809,7 @@ if (!triggered) linkend="guc-max-standby-streaming-delay">, that define the maximum allowed delay in WAL application. Conflicting queries will be canceled once it has taken longer than the relevant delay setting to apply any - newly-received WAL data. There are two parameters so that different delay + newly received WAL data. There are two parameters so that different delay values can be specified for the case of reading WAL data from an archive (i.e., initial recovery from a base backup or catching up a standby server that has fallen far behind) versus reading WAL data via @@ -1897,7 +1897,7 @@ if (!triggered) so that queries are not rapidly canceled by conflicts in WAL archive files during disconnected periods. You should also consider increasing max_standby_streaming_delay to avoid rapid cancellations - by newly-arrived streaming WAL entries after reconnection. + by newly arrived streaming WAL entries after reconnection. diff --git a/doc/src/sgml/mvcc.sgml b/doc/src/sgml/mvcc.sgml index cd55be8..af8d10f 100644 --- a/doc/src/sgml/mvcc.sgml +++ b/doc/src/sgml/mvcc.sgml @@ -139,7 +139,7 @@ A transaction re-executes a query returning a set of rows that satisfy a search condition and finds that the set of rows satisfying the condition - has changed due to another recently-committed transaction. + has changed due to another recently committed transaction. diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index f0a60d8..ec87c51 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1838,7 +1838,7 @@ foo=> \lo_import '/home/peter/pictures/photo.xcf' 'a picture of me lo_import 152801 The response indicates that the large object received object - ID 152801, which can be used to access the newly-created large + ID 152801, which can be used to access the newly created large object in the future. For the sake of readability, it is recommended to always associate a human-readable comment with every object. Both OIDs and comments can be viewed with the diff --git a/doc/src/sgml/release-8.0.sgml b/doc/src/sgml/release-8.0.sgml index ab7a270..d1e0ccd 100644 --- a/doc/src/sgml/release-8.0.sgml +++ b/doc/src/sgml/release-8.0.sgml @@ -1080,7 +1080,7 @@ - Ensure an error is reported when a newly-defined PL/pgSQL trigger + Ensure an error is reported when a newly defined PL/pgSQL trigger function is invoked as a normal function (Tom) @@ -2505,7 +2505,7 @@ many connection requests arrive close together. This applies Fix bug introduced in 8.0 that could allow ReadBuffer to return an already-used page as new, potentially causing loss of -recently-committed data (Tom) +recently committed data (Tom) Fix for protocol-level Describe messages issued outside a transaction or in a failed transaction (Tom) @@ -3555,7 +3555,7 @@ typedefs (Michael) New buffer replacement strategy that improves caching (Jan) - Prior releases used a least-recently-used (LRU) cache to keep + Prior releases used a least recently used (LRU) cache to keep recently referenced pages in memory. The LRU algorithm did not consider the number of times a specific cache entry was accessed, so large table scans could force out useful cache pages. diff --git a/doc/src/sgml/release-8.1.sgml b/doc/src/sgml/release-8.1.sgml index b7bb89f..4452fbd 100644 --- a/doc/src/sgml/release-8.1.sgml +++ b/doc/src/sgml/release-8.1.sgml @@ -1451,7 +1451,7 @@ - Ensure an error is reported when a newly-defined PL/pgSQL trigger + Ensure an error is reported when a newly defined PL/pgSQL trigger function is invoked as a normal function (Tom) @@ -3164,7 +3164,7 @@ many connection requests arrive close together. This applies Fix bug introduced in 8.0 that could allow ReadBuffer to return an already-used page as new, potentially causing loss of -recently-committed data (Tom) +recently committed data (Tom) Fix for protocol-level Describe messages issued outside a transaction or in a failed transaction (Tom) @@ -3717,7 +3717,7 @@ DISTINCT query currval(), and setval() were stored as simple text strings, meaning that renaming or dropping a sequence used in a DEFAULT clause made the clause - invalid. This release stores all newly-created sequence function + invalid. This release stores all newly created sequence function arguments as internal OIDs, allowing them to track sequence renaming, and adding dependency information that prevents improper sequence removal. It also makes such DEFAULT diff --git a/doc/src/sgml/release-8.2.sgml b/doc/src/sgml/release-8.2.sgml index 1c972ad..1614b8d 100644 --- a/doc/src/sgml/release-8.2.sgml +++ b/doc/src/sgml/release-8.2.sgml @@ -2722,7 +2722,7 @@ - Ensure an error is reported when a newly-defined PL/pgSQL trigger + Ensure an error is reported when a newly defined PL/pgSQL trigger function is invoked as a normal function (Tom) diff --git a/doc/src/sgml/release-8.3.sgml b/doc/src/sgml/release-8.3.sgml index 350f6d8..d7dcf95 100644 --- a/doc/src/sgml/release-8.3.sgml +++ b/doc/src/sgml/release-8.3.sgml @@ -1165,7 +1165,7 @@ - Fix recently-introduced memory leak in processing of + Fix recently introduced memory leak in processing of inet/cidr values (Heikki Linnakangas) @@ -4700,7 +4700,7 @@ - Ensure an error is reported when a newly-defined PL/pgSQL trigger + Ensure an error is reported when a newly defined PL/pgSQL trigger function is invoked as a normal function (Tom) @@ -5410,7 +5410,7 @@ In the worst case this could result in deleting a newly created table in a new database that happened to get the same OID as the - recently-dropped one; but of course that is an extremely + recently dropped one; but of course that is an extremely low-probability scenario. diff --git a/doc/src/sgml/release-8.4.sgml b/doc/src/sgml/release-8.4.sgml index 6ce0fa3..4b7a71c 100644 --- a/doc/src/sgml/release-8.4.sgml +++ b/doc/src/sgml/release-8.4.sgml @@ -2862,7 +2862,7 @@ - Fix recently-introduced memory leak in processing of + Fix recently introduced memory leak in processing of inet/cidr values (Heikki Linnakangas) @@ -6275,7 +6275,7 @@ WITH w AS (SELECT * FROM foo) SELECT * FROM w, bar ... FOR UPDATE - Fix ecpg to not treat recently-added keywords as + Fix ecpg to not treat recently added keywords as reserved words (Tom) diff --git a/doc/src/sgml/release-9.0.sgml b/doc/src/sgml/release-9.0.sgml index 568ce33..c087cb2 100644 --- a/doc/src/sgml/release-9.0.sgml +++ b/doc/src/sgml/release-9.0.sgml @@ -3342,7 +3342,7 @@ Fix CLUSTER/VACUUM FULL handling of toast - values owned by recently-updated rows (Tom Lane) + values owned by recently updated rows (Tom Lane) @@ -3498,7 +3498,7 @@ - Fix recently-introduced memory leak in processing of + Fix recently introduced memory leak in processing of inet/cidr values (Heikki Linnakangas) diff --git a/doc/src/sgml/release-9.1.sgml b/doc/src/sgml/release-9.1.sgml index 40c021e..9d4810e 100644 --- a/doc/src/sgml/release-9.1.sgml +++ b/doc/src/sgml/release-9.1.sgml @@ -4101,7 +4101,7 @@ Fix CLUSTER/VACUUM FULL handling of toast - values owned by recently-updated rows (Tom Lane) + values owned by recently updated rows (Tom Lane) @@ -4264,7 +4264,7 @@ - Fix recently-introduced memory leak in processing of + Fix recently introduced memory leak in processing of inet/cidr values (Heikki Linnakangas) -- 2.1.0