Re: minor cleanup in plpgsql.sgml

From: Christopher Kings-Lynne <chriskl(at)familyhealth(dot)com(dot)au>
To: Robert Treat <xzilla(at)users(dot)sourceforge(dot)net>
Cc: pgsql-patches(at)postgresql(dot)org
Subject: Re: minor cleanup in plpgsql.sgml
Date: 2003-11-26 01:30:21
Message-ID: 3FC4022D.20806@familyhealth.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

Ummm - surely the original was correct?

Chris

Robert Treat wrote:

> Marcos Truchado <mtruchado(at)telefonica(dot)net> reported this on -docs yesterday.
>
> Robert Treat
>
>
> ------------------------------------------------------------------------
>
> Index: plpgsql.sgml
> ===================================================================
> RCS file: /projects/cvsroot/pgsql-server/doc/src/sgml/plpgsql.sgml,v
> retrieving revision 1.29
> diff -c -r1.29 plpgsql.sgml
> *** plpgsql.sgml 12 Nov 2003 22:47:47 -0000 1.29
> --- plpgsql.sgml 25 Nov 2003 14:12:50 -0000
> ***************
> *** 986,994 ****
> <programlisting>
> DECLARE
> users_rec RECORD;
> - full_name varchar;
> BEGIN
> ! SELECT INTO users_rec * FROM users WHERE user_id=3;
>
> IF users_rec.homepage IS NULL THEN
> -- user entered no homepage, return "http://"
> --- 986,993 ----
> <programlisting>
> DECLARE
> users_rec RECORD;
> BEGIN
> ! SELECT * FROM users WHERE user_id=3 INTO users_rec;
>
> IF users_rec.homepage IS NULL THEN
> -- user entered no homepage, return "http://"
>
>
> ------------------------------------------------------------------------
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster

In response to

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Claudio Natoli 2003-11-26 01:34:09 Bug in fd.c (FreeFile)
Previous Message Tom Lane 2003-11-25 21:44:10 Re: minor cleanup in plpgsql.sgml