Thread
Commits
-
Fix missing space in docs.
- 88482d75cce5 14.2 landed
- 892da5200aaf 13.6 landed
- 4a761b72a9ec 12.10 landed
- a00bd7aa17f6 11.15 landed
- 113b0a2dd79b 10.20 landed
- 373e55218972 15.0 landed
-
Minor documentation fix - missing blank space
Japin Li <japinli@hotmail.com> — 2021-11-24T14:49:01Z
Hi, When I read the documentation about Overview of PostgreSQL Internals - Executor [1], I find there is a missing space in the documentation. diff --git a/doc/src/sgml/arch-dev.sgml b/doc/src/sgml/arch-dev.sgml index 7aff059e82..c2be28fac8 100644 --- a/doc/src/sgml/arch-dev.sgml +++ b/doc/src/sgml/arch-dev.sgml @@ -559,7 +559,7 @@ A simple <command>INSERT ... VALUES</command> command creates a trivial plan tree consisting of a single <literal>Result</literal> node, which computes just one result row, feeding that up - to<literal>ModifyTable</literal> to perform the insertion. + to <literal>ModifyTable</literal> to perform the insertion. </para> </sect1> [1] https://www.postgresql.org/docs/14/executor.html -- Regrads, Japin Li. ChengDu WenWu Information Technology Co.,Ltd. -
Re: Minor documentation fix - missing blank space
Heikki Linnakangas <hlinnaka@iki.fi> — 2021-11-24T16:38:53Z
On 24/11/2021 16:49, Japin Li wrote: > When I read the documentation about Overview of PostgreSQL Internals - Executor [1], > I find there is a missing space in the documentation. > > diff --git a/doc/src/sgml/arch-dev.sgml b/doc/src/sgml/arch-dev.sgml > index 7aff059e82..c2be28fac8 100644 > --- a/doc/src/sgml/arch-dev.sgml > +++ b/doc/src/sgml/arch-dev.sgml > @@ -559,7 +559,7 @@ > A simple <command>INSERT ... VALUES</command> command creates a > trivial plan tree consisting of a single <literal>Result</literal> > node, which computes just one result row, feeding that up > - to<literal>ModifyTable</literal> to perform the insertion. > + to <literal>ModifyTable</literal> to perform the insertion. > </para> > > </sect1> Applied, thanks! - Heikki