Remove various duplicated words

Author: Justin Pryzby
Discussion: https://postgr.es/m/20220919111000.GW31833@telsasoft.com
This commit is contained in:
David Rowley 2022-09-20 08:37:02 +12:00
parent cab3ce7a06
commit 66fa8ff637
4 changed files with 11 additions and 11 deletions

View File

@ -2155,8 +2155,8 @@ InitPartitionPruneContext(PartitionPruneContext *context,
* Current values of the indexes present in PartitionPruneState count all the * Current values of the indexes present in PartitionPruneState count all the
* subplans that would be present before initial pruning was done. If initial * subplans that would be present before initial pruning was done. If initial
* pruning got rid of some of the subplans, any subsequent pruning passes will * pruning got rid of some of the subplans, any subsequent pruning passes will
* will be looking at a different set of target subplans to choose from than * be looking at a different set of target subplans to choose from than those
* those in the pre-initial-pruning set, so the maps in PartitionPruneState * in the pre-initial-pruning set, so the maps in PartitionPruneState
* containing those indexes must be updated to reflect the new indexes of * containing those indexes must be updated to reflect the new indexes of
* subplans in the post-initial-pruning set. * subplans in the post-initial-pruning set.
*/ */

View File

@ -556,7 +556,7 @@ pgstat_initialize(void)
* suggested idle timeout is returned. Currently this is always * suggested idle timeout is returned. Currently this is always
* PGSTAT_IDLE_INTERVAL (10000ms). Callers can use the returned time to set up * PGSTAT_IDLE_INTERVAL (10000ms). Callers can use the returned time to set up
* a timeout after which to call pgstat_report_stat(true), but are not * a timeout after which to call pgstat_report_stat(true), but are not
* required to to do so. * required to do so.
* *
* Note that this is called only when not within a transaction, so it is fair * Note that this is called only when not within a transaction, so it is fair
* to use transaction stop time as an approximation of current time. * to use transaction stop time as an approximation of current time.

View File

@ -8,13 +8,13 @@
* storage implementation and the details about individual types of * storage implementation and the details about individual types of
* statistics. * statistics.
* *
* Replication slot stats work a bit different than other other * Replication slot stats work a bit different than other variable-numbered
* variable-numbered stats. Slots do not have oids (so they can be created on * stats. Slots do not have oids (so they can be created on physical
* physical replicas). Use the slot index as object id while running. However, * replicas). Use the slot index as object id while running. However, the slot
* the slot index can change when restarting. That is addressed by using the * index can change when restarting. That is addressed by using the name when
* name when (de-)serializing. After a restart it is possible for slots to * (de-)serializing. After a restart it is possible for slots to have been
* have been dropped while shut down, which is addressed by not restoring * dropped while shut down, which is addressed by not restoring stats for
* stats for slots that cannot be found by name when starting up. * slots that cannot be found by name when starting up.
* *
* Copyright (c) 2001-2022, PostgreSQL Global Development Group * Copyright (c) 2001-2022, PostgreSQL Global Development Group
* *

View File

@ -257,7 +257,7 @@ The certificate file to use. Implementation is SSL backend specific.
=item keyfile => B<value> =item keyfile => B<value>
The private key to to use. Implementation is SSL backend specific. The private key to use. Implementation is SSL backend specific.
=item crlfile => B<value> =item crlfile => B<value>