Re: Possible typos in the #12.1.1 examples

2020-03-20 Thread Bruce Momjian
On Thu, Mar 5, 2020 at 04:45:23PM +0900, Michael Paquier wrote: > On Mon, Mar 02, 2020 at 03:38:01PM +, PG Doc comments form wrote: > > Seems like here the example missed 'm' as an alias and a dot in the `where` > > clause: > > ... messages m > > ... m.id = 12; > > This query is valid as-is.

Re: Possible typos in the #12.1.1 examples

2020-03-04 Thread Michael Paquier
On Mon, Mar 02, 2020 at 03:38:01PM +, PG Doc comments form wrote: > Seems like here the example missed 'm' as an alias and a dot in the `where` > clause: > ... messages m > ... m.id = 12; This query is valid as-is. > SELECT m.title || ' ' || m.author || ' ' || m.abstract || ' ' || d.body AS >