public inbox for [email protected]
help / color / mirror / Atom feedWhat does it mean by XLOG_BACKUP_RECORD?
27+ messages / 5 participants
[nested] [flat]
* What does it mean by XLOG_BACKUP_RECORD?
@ 2017-06-29 01:28 Masahiko Sawada <[email protected]>
2017-06-29 01:49 ` Re: What does it mean by XLOG_BACKUP_RECORD? Michael Paquier <[email protected]>
0 siblings, 1 reply; 27+ messages in thread
From: Masahiko Sawada @ 2017-06-29 01:28 UTC (permalink / raw)
To: pgsql-hackers
Hi,
While reading source codes I found the following comment in xlog.c.
/*
* Have we passed our safe starting point? Note that minRecoveryPoint is
* known to be incorrectly set if ControlFile->backupEndRequired, until
* the XLOG_BACKUP_RECORD arrives to advise us of the correct
* minRecoveryPoint. All we know prior to that is that we're not
* consistent yet.
*/
if (!reachedConsistency && !ControlFile->backupEndRequired &&
minRecoveryPoint <= lastReplayedEndRecPtr &&
XLogRecPtrIsInvalid(ControlFile->backupStartPoint))
What does XLOG_BACKUP_RECORED means by? I could not find such XLOG info value.
Does it mean XLOG_BACKUP_END?
Regards,
--
Masahiko Sawada
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center
--
Sent via pgsql-hackers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
^ permalink raw reply [nested|flat] 27+ messages in thread
* Re: What does it mean by XLOG_BACKUP_RECORD?
2017-06-29 01:28 What does it mean by XLOG_BACKUP_RECORD? Masahiko Sawada <[email protected]>
@ 2017-06-29 01:49 ` Michael Paquier <[email protected]>
2017-06-29 10:09 ` Re: What does it mean by XLOG_BACKUP_RECORD? Masahiko Sawada <[email protected]>
0 siblings, 1 reply; 27+ messages in thread
From: Michael Paquier @ 2017-06-29 01:49 UTC (permalink / raw)
To: Masahiko Sawada <[email protected]>; +Cc: pgsql-hackers
On Thu, Jun 29, 2017 at 10:28 AM, Masahiko Sawada <[email protected]> wrote:
> While reading source codes I found the following comment in xlog.c.
>
> /*
> * Have we passed our safe starting point? Note that minRecoveryPoint is
> * known to be incorrectly set if ControlFile->backupEndRequired, until
> * the XLOG_BACKUP_RECORD arrives to advise us of the correct
> * minRecoveryPoint. All we know prior to that is that we're not
> * consistent yet.
> */
> if (!reachedConsistency && !ControlFile->backupEndRequired &&
> minRecoveryPoint <= lastReplayedEndRecPtr &&
> XLogRecPtrIsInvalid(ControlFile->backupStartPoint))
>
> What does XLOG_BACKUP_RECORED means by? I could not find such XLOG info value.
> Does it mean XLOG_BACKUP_END?
This comment is a thinko, it refers to XLOG_BACKUP_END. This comment
block could be reworded a bit, it looks cleaner to me to say
"ControlFile->backupEndRequired is false" instead of just referring to
the variable itself. Worse, the current comment implies that
minRecoveryPoint is incorrectly set if it is true. Bleh.
--
Michael
--
Sent via pgsql-hackers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
Attachments:
[application/octet-stream] xlog-comment-fix.patch (717B, ../../CAB7nPqT+X6ExvQ-nYiYH2vQRV+M65JXX6eJV4jhmg2+J3updHw@mail.gmail.com/2-xlog-comment-fix.patch)
download | inline diff:
diff --git a/src/backend/access/transam/xlog.c b/src/backend/access/transam/xlog.c
index 0a6314a642..afbd6d536a 100644
--- a/src/backend/access/transam/xlog.c
+++ b/src/backend/access/transam/xlog.c
@@ -7817,8 +7817,8 @@ CheckRecoveryConsistency(void)
/*
* Have we passed our safe starting point? Note that minRecoveryPoint is
- * known to be incorrectly set if ControlFile->backupEndRequired, until
- * the XLOG_BACKUP_RECORD arrives to advise us of the correct
+ * known to be incorrectly set if ControlFile->backupEndRequired is false,
+ * until the XLOG_BACKUP_END record arrives to advise us of the correct
* minRecoveryPoint. All we know prior to that is that we're not
* consistent yet.
*/
^ permalink raw reply [nested|flat] 27+ messages in thread
* Re: What does it mean by XLOG_BACKUP_RECORD?
2017-06-29 01:28 What does it mean by XLOG_BACKUP_RECORD? Masahiko Sawada <[email protected]>
2017-06-29 01:49 ` Re: What does it mean by XLOG_BACKUP_RECORD? Michael Paquier <[email protected]>
@ 2017-06-29 10:09 ` Masahiko Sawada <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Masahiko Sawada @ 2017-06-29 10:09 UTC (permalink / raw)
To: Michael Paquier <[email protected]>; +Cc: pgsql-hackers
On Thu, Jun 29, 2017 at 10:49 AM, Michael Paquier
<[email protected]> wrote:
> On Thu, Jun 29, 2017 at 10:28 AM, Masahiko Sawada <[email protected]> wrote:
>> While reading source codes I found the following comment in xlog.c.
>>
>> /*
>> * Have we passed our safe starting point? Note that minRecoveryPoint is
>> * known to be incorrectly set if ControlFile->backupEndRequired, until
>> * the XLOG_BACKUP_RECORD arrives to advise us of the correct
>> * minRecoveryPoint. All we know prior to that is that we're not
>> * consistent yet.
>> */
>> if (!reachedConsistency && !ControlFile->backupEndRequired &&
>> minRecoveryPoint <= lastReplayedEndRecPtr &&
>> XLogRecPtrIsInvalid(ControlFile->backupStartPoint))
>>
>> What does XLOG_BACKUP_RECORED means by? I could not find such XLOG info value.
>> Does it mean XLOG_BACKUP_END?
>
> This comment is a thinko, it refers to XLOG_BACKUP_END. This comment
> block could be reworded a bit, it looks cleaner to me to say
> "ControlFile->backupEndRequired is false" instead of just referring to
> the variable itself.
Thanks, I agree to use XLOG_BACKUP_END instead.
> Worse, the current comment implies that
> minRecoveryPoint is incorrectly set if it is true. Bleh.
Looking at the condition, we use minRecoveryPoint only when
ControlFile->backupEndRequired is *false*. So I guess that it means
that minRecoveryPoint is incorrectly set if
ControlFile->backupEndReuired is true. Am I missing something?
Regards,
--
Masahiko Sawada
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center
--
Sent via pgsql-hackers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* [PATCH 4/6] 0002 review
@ 2021-02-15 15:31 Tomas Vondra <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Tomas Vondra @ 2021-02-15 15:31 UTC (permalink / raw)
---
doc/src/sgml/ref/analyze.sgml | 2 +-
doc/src/sgml/ref/cluster.sgml | 2 +-
doc/src/sgml/ref/copy.sgml | 2 +-
doc/src/sgml/ref/create_index.sgml | 2 +-
doc/src/sgml/ref/reindex.sgml | 2 +-
doc/src/sgml/ref/vacuum.sgml | 2 +-
6 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/doc/src/sgml/ref/analyze.sgml b/doc/src/sgml/ref/analyze.sgml
index 9db9070b62..5a9e3322b3 100644
--- a/doc/src/sgml/ref/analyze.sgml
+++ b/doc/src/sgml/ref/analyze.sgml
@@ -275,7 +275,7 @@ ANALYZE [ VERBOSE ] [ <replaceable class="parameter">table_and_columns</replacea
</para>
<para>
- Each backend running the <command>ANALYZE</command> command will report their
+ Each backend running the <command>ANALYZE</command> command will report its
progress to the <structname>pg_stat_progress_analyze</structname> view.
See <xref linkend="analyze-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/cluster.sgml b/doc/src/sgml/ref/cluster.sgml
index 5c2270f71b..70c4b33454 100644
--- a/doc/src/sgml/ref/cluster.sgml
+++ b/doc/src/sgml/ref/cluster.sgml
@@ -193,7 +193,7 @@ CLUSTER [VERBOSE]
</para>
<para>
- Each backend running the <command>CLUSTER</command> command will report their
+ Each backend running the <command>CLUSTER</command> command will report its
progress to the <structname>pg_stat_progress_cluster</structname> view.
See <xref linkend="cluster-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml
index af3ce72561..41e1d7c371 100644
--- a/doc/src/sgml/ref/copy.sgml
+++ b/doc/src/sgml/ref/copy.sgml
@@ -84,7 +84,7 @@ COPY { <replaceable class="parameter">table_name</replaceable> [ ( <replaceable
</para>
<para>
- Each backend running the <command>COPY</command> command will report their
+ Each backend running the <command>COPY</command> command will report its
progress to the <structname>pg_stat_progress_copy</structname> view.
See <xref linkend="copy-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/create_index.sgml b/doc/src/sgml/ref/create_index.sgml
index 278058f500..6079a0ef28 100644
--- a/doc/src/sgml/ref/create_index.sgml
+++ b/doc/src/sgml/ref/create_index.sgml
@@ -868,7 +868,7 @@ Indexes:
<para>
Each backend running the <command>CREATE INDEX</command> command will
- report their progress to the
+ report it's progress to the
<structname>pg_stat_progress_create_index</structname> view.
See <xref linkend="create-index-progress-reporting"/> for details.
</para>
diff --git a/doc/src/sgml/ref/reindex.sgml b/doc/src/sgml/ref/reindex.sgml
index f69f5db403..3b4d409856 100644
--- a/doc/src/sgml/ref/reindex.sgml
+++ b/doc/src/sgml/ref/reindex.sgml
@@ -496,7 +496,7 @@ Indexes:
<para>
Each backend running the <command>REINDEX</command> command will report
- their progress to the <structname>pg_stat_progress_create_index</structname>
+ its progress to the <structname>pg_stat_progress_create_index</structname>
view. See <xref linkend="create-index-progress-reporting"/> for details.
</para>
</refsect2>
diff --git a/doc/src/sgml/ref/vacuum.sgml b/doc/src/sgml/ref/vacuum.sgml
index bab3d00313..0624235696 100644
--- a/doc/src/sgml/ref/vacuum.sgml
+++ b/doc/src/sgml/ref/vacuum.sgml
@@ -395,7 +395,7 @@ VACUUM [ FULL ] [ FREEZE ] [ VERBOSE ] [ ANALYZE ] [ <replaceable class="paramet
</para>
<para>
Each backend running the <command>VACUUM</command> command without the
- <literal>FULL</literal> option will report their progress in the
+ <literal>FULL</literal> option will report its progress in the
<structname>pg_stat_progress_vacuum</structname> view. Backends running
<command>VACUUM</command> with the <literal>FULL</literal> option report
progress in the <structname>pg_stat_progress_cluster</structname> instead.
--
2.26.2
--------------DA8D60BF026F7ACE69A9AEE5
Content-Type: text/x-patch; charset=UTF-8;
name="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
Content-Transfer-Encoding: 8bit
Content-Disposition: attachment;
filename*0="v7-0005-Add-copy-progress-reporting-regression-tests.patch"
^ permalink raw reply [nested|flat] 27+ messages in thread
* Re: On disable_cost
@ 2024-04-01 21:00 Tom Lane <[email protected]>
2024-04-01 23:53 ` Re: On disable_cost Robert Haas <[email protected]>
0 siblings, 1 reply; 27+ messages in thread
From: Tom Lane @ 2024-04-01 21:00 UTC (permalink / raw)
To: Robert Haas <[email protected]>; +Cc: Jian Guo <[email protected]>; Euler Taveira <[email protected]>; Zhenghua Lyu <[email protected]>; PostgreSQL Hackers <[email protected]>
Robert Haas <[email protected]> writes:
> One of the things I realized relatively early is that the patch does
> nothing to propagate disable_cost upward through the plan tree.
> ...
> After straining my brain over various plan changes for a long time,
> and hacking on the code somewhat, I realized that just propagating the
> Boolean upward is insufficient to set things right. That's basically
> because I was being dumb when I said this:
>> I don't think we should care how MANY disabled nodes appear in a
>> plan, particularly.
Very interesting, thanks for the summary. So the fact that
disable_cost is additive across plan nodes is actually a pretty
important property of the current setup. I think this is closely
related to one argument you made against my upthread idea of using
IEEE Infinity for disable_cost: that'd mask whether more than one
of the sub-plans had been disabled.
> ... And while there's probably more than one way
> to make it work, the easiest thing seems to be to just have a
> disabled-counter in every node that gets initialized to the total
> disabled-counter values of all of its children, and then you add 1 if
> that node is itself doing something that is disabled, i.e. the exact
> opposite of what I said in the quote above.
Yeah, that seems like the next thing to try if anyone plans to pursue
this further. That'd essentially do what we're doing now except that
disable_cost is its own "order of infinity", entirely separate from
normal costs.
regards, tom lane
^ permalink raw reply [nested|flat] 27+ messages in thread
* Re: On disable_cost
2024-04-01 21:00 Re: On disable_cost Tom Lane <[email protected]>
@ 2024-04-01 23:53 ` Robert Haas <[email protected]>
0 siblings, 0 replies; 27+ messages in thread
From: Robert Haas @ 2024-04-01 23:53 UTC (permalink / raw)
To: Tom Lane <[email protected]>; +Cc: Zhenghua Lyu <[email protected]>; PostgreSQL Hackers <[email protected]>
On Mon, Apr 1, 2024 at 5:00 PM Tom Lane <[email protected]> wrote:
> Very interesting, thanks for the summary. So the fact that
> disable_cost is additive across plan nodes is actually a pretty
> important property of the current setup. I think this is closely
> related to one argument you made against my upthread idea of using
> IEEE Infinity for disable_cost: that'd mask whether more than one
> of the sub-plans had been disabled.
Yes, exactly. I just hadn't quite put the pieces together.
> Yeah, that seems like the next thing to try if anyone plans to pursue
> this further. That'd essentially do what we're doing now except that
> disable_cost is its own "order of infinity", entirely separate from
> normal costs.
Right. I think that's actually what I had in mind in the last
paragraph of http://postgr.es/m/CA+TgmoY+Ltw7B=1FSFSN4yHcu2roWrz-ijBovj-99LZU=9h1dA@mail.gmail.com
but that was a while ago and I'd lost track of why it actually
mattered. But I also have questions about whether that's really the
right approach.
I think the approach of just not generating paths we don't want in the
first place merits more consideration. We do that in some cases
already, but not in others, and I'm not clear why. Like, if
index-scans, index-only scans, sorts, nested loops, and hash joins are
disabled, something is going to have to give, because the only
remaining join type is a merge join yet we've ruled out every possible
way of getting the day into some order, but I'm not sure whether
there's some reason that we need exactly the behavior that we have
right now rather than anything else. Maybe it would be OK to just
insist on at least one unparameterized, non-partial path at the
baserel level, and then if that ends up forcing us to ignore the
join-type restrictions higher up, so be it. Or maybe that's not OK and
after I try that out I'll end up writing another email about how I was
a bit clueless about all of this. I don't know. But I feel like it
merits more investigation, because I'm having trouble shaking the
theory that what we've got right now is pretty arbitrary.
And also ... looking at the regression tests, and also thinking about
the kinds of problems that I think people run into in real
deployments, I can't help feeling like we've somehow got this whole
thing backwards. enable_wunk imagines that you want to plan as normal
except with one particular plan type excluded from consideration. And
maybe that makes sense if the point of the enable_wunk GUC is that the
planner feature might be buggy and you might therefore want to turn it
off to protect yourself, or if the planner feature might be expensive
and you might want to turn it off to save cycles. But surely that's
not the case with something like enable_seqscan or enable_indexscan.
What I think we're mostly doing in the regression tests is shutting
off every relevant type of plan except one. I theorize that what we
actually want to do is tell the planner what we do want to happen,
rather than what we don't want to happen, but we've got this weird set
of GUCs that do the opposite of that and we're super-attached to them
because they've existed forever. I don't really have a concrete
proposal here, but I wonder if what we're actually talking about here
is spending time and energy polishing a mechanism that nobody likes in
the first place.
--
Robert Haas
EDB: http://www.enterprisedb.com
^ permalink raw reply [nested|flat] 27+ messages in thread
end of thread, other threads:[~2024-04-01 23:53 UTC | newest]
Thread overview: 27+ messages (download: mbox mbox.gz follow: Atom feed)
-- links below jump to the message on this page --
2017-06-29 01:28 What does it mean by XLOG_BACKUP_RECORD? Masahiko Sawada <[email protected]>
2017-06-29 01:49 ` Michael Paquier <[email protected]>
2017-06-29 10:09 ` Masahiko Sawada <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2021-02-15 15:31 [PATCH 4/6] 0002 review Tomas Vondra <[email protected]>
2024-04-01 21:00 Re: On disable_cost Tom Lane <[email protected]>
2024-04-01 23:53 ` Re: On disable_cost Robert Haas <[email protected]>
This inbox is served by agora; see mirroring instructions
for how to clone and mirror all data and code used for this inbox