BUG #15629: Typo in Documentation

Started by PG Bug reporting formalmost 7 years ago10 messages
#1PG Bug reporting form
noreply@postgresql.org

The following bug has been logged on the website:

Bug reference: 15629
Logged by: Shouyu Luo
Email address: syluo1990@hotmail.com
PostgreSQL version: 11.0
Operating system: Ubuntu
Description:

https://www.postgresql.org/docs/current/ddl-partitioning.html

5.10.5. Partitioning and Constraint Exclusion
Constraint exclusion is only applied during query planning; unlike partition
pruning, it cannot be applied during query execution.

Is it supposed to be "unlike partition pruning, it can be applied during
query execution"?

#2David Rowley
david.rowley@2ndquadrant.com
In reply to: PG Bug reporting form (#1)
1 attachment(s)
Re: BUG #15629: Typo in Documentation

On Mon, 11 Feb 2019 at 20:49, PG Bug reporting form
<noreply@postgresql.org> wrote:

https://www.postgresql.org/docs/current/ddl-partitioning.html

5.10.5. Partitioning and Constraint Exclusion
Constraint exclusion is only applied during query planning; unlike partition
pruning, it cannot be applied during query execution.

Is it supposed to be "unlike partition pruning, it can be applied during
query execution"?

That's a bit confusing. "it" looks like must have been intended to
reference constraint exclusion, but since partition pruning was
mentioned afterwards, then it makes more sense to apply it to that.

Maybe it would be more clear to write:

Constraint exclusion is only applied during query planning; unlike
partition pruning which can also be applied during query execution.

Small patch doing it that way is attached.

--
David Rowley http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services

Attachments:

constraint_exclusion_doc_fix.patchapplication/octet-stream; name=constraint_exclusion_doc_fix.patchDownload
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml
index ef713a5a1c..0126dad578 100644
--- a/doc/src/sgml/ddl.sgml
+++ b/doc/src/sgml/ddl.sgml
@@ -4512,7 +4512,7 @@ EXPLAIN SELECT count(*) FROM measurement WHERE logdate &gt;= DATE '2008-01-01';
     <listitem>
      <para>
       Constraint exclusion is only applied during query planning; unlike
-      partition pruning, it cannot be applied during query execution.
+      partition pruning, which can also be applied during query execution.
      </para>
     </listitem>
 
#3Amit Langote
amitlangote09@gmail.com
In reply to: David Rowley (#2)
Re: BUG #15629: Typo in Documentation

On Mon, Feb 11, 2019 at 5:25 PM David Rowley
<david.rowley@2ndquadrant.com> wrote:

On Mon, 11 Feb 2019 at 20:49, PG Bug reporting form
<noreply@postgresql.org> wrote:

https://www.postgresql.org/docs/current/ddl-partitioning.html

5.10.5. Partitioning and Constraint Exclusion
Constraint exclusion is only applied during query planning; unlike partition
pruning, it cannot be applied during query execution.

Is it supposed to be "unlike partition pruning, it can be applied during
query execution"?

That's a bit confusing. "it" looks like must have been intended to
reference constraint exclusion, but since partition pruning was
mentioned afterwards, then it makes more sense to apply it to that.

Maybe it would be more clear to write:

Constraint exclusion is only applied during query planning; unlike
partition pruning which can also be applied during query execution.

Small patch doing it that way is attached.

+1

Maybe, the semicolon should be replaced by a comma?

Thanks,
Amit

#4Chapman Flack
chap@anastigmatix.net
In reply to: Amit Langote (#3)
1 attachment(s)
Re: Re: BUG #15629: Typo in Documentation

On 02/11/19 08:18, Amit Langote wrote:

Maybe, the semicolon should be replaced by a comma?

I agree, and here is a version of the patch with that change.

Regards,
-Chap

Attachments:

constraint_exclusion_doc_fix-1.patchtext/x-patch; name=constraint_exclusion_doc_fix-1.patchDownload
diff --git a/doc/src/sgml/ddl.sgml b/doc/src/sgml/ddl.sgml
index ef713a5..8314fce 100644
--- a/doc/src/sgml/ddl.sgml
+++ b/doc/src/sgml/ddl.sgml
@@ -4511,8 +4511,8 @@ EXPLAIN SELECT count(*) FROM measurement WHERE logdate &gt;= DATE '2008-01-01';
    <itemizedlist>
     <listitem>
      <para>
-      Constraint exclusion is only applied during query planning; unlike
-      partition pruning, it cannot be applied during query execution.
+      Constraint exclusion is only applied during query planning, unlike
+      partition pruning, which can also be applied during query execution.
      </para>
     </listitem>
 
#5Chapman Flack
chap@anastigmatix.net
In reply to: Chapman Flack (#4)
Re: BUG #15629: Typo in Documentation

The following review has been posted through the commitfest application:
make installcheck-world: not tested
Implements feature: not tested
Spec compliant: not tested
Documentation: tested, passed

This is a simple documentation change for which I do not see any controversy. (As a native speaker, I didn't find the original wording unclear, but if this change widens the audience for which it is clear, that's worthwhile.)

The new status of this patch is: Ready for Committer

#6Chapman Flack
chap@anastigmatix.net
In reply to: Chapman Flack (#5)
Re: BUG #15629: Typo in Documentation

hmm, cf app has not seen <5C621F9F.3020307@anastigmatix.net> yet ... changing status back until that happens.

The new status of this patch is: Needs review

#7David Rowley
david.rowley@2ndquadrant.com
In reply to: Chapman Flack (#4)
Re: Re: BUG #15629: Typo in Documentation

On Tue, 12 Feb 2019 at 14:21, Chapman Flack <chap@anastigmatix.net> wrote:

On 02/11/19 08:18, Amit Langote wrote:

Maybe, the semicolon should be replaced by a comma?

I agree, and here is a version of the patch with that change.

Agreed about the comma. Thanks for updating the patch.

--
David Rowley http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services

#8Michael Paquier
michael@paquier.xyz
In reply to: David Rowley (#7)
Re: Re: BUG #15629: Typo in Documentation

On Tue, Feb 12, 2019 at 03:09:30PM +1300, David Rowley wrote:

Agreed about the comma. Thanks for updating the patch.

Cool for me, so pushed down to v11.
--
Michael

#9David Rowley
david.rowley@2ndquadrant.com
In reply to: Michael Paquier (#8)
Re: Re: BUG #15629: Typo in Documentation

On Tue, 12 Feb 2019 at 16:04, Michael Paquier <michael@paquier.xyz> wrote:

Cool for me, so pushed down to v11.

Thanks for pushing.

(belated due to being on leave)

--
David Rowley http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Training & Services

#10Michael Paquier
michael@paquier.xyz
In reply to: David Rowley (#9)
Re: Re: BUG #15629: Typo in Documentation

On Mon, Feb 18, 2019 at 01:04:22PM +1300, David Rowley wrote:

Thanks for pushing.

(belated due to being on leave)

No problem. Hope you had a good rest.
--
Michael