error in plpgsql-statements.html#PLPGSQL-SELECT-INTO - Mailing list pgsql-docs

From Marcos Truchado
Subject error in plpgsql-statements.html#PLPGSQL-SELECT-INTO
Date
Msg-id 3FC22BB0.1030007@truchado.jazztel.es
Whole thread Raw
List pgsql-docs
Hi. I have just learned how to create my own triggers on plpgsql language, and I think I have discover an error into the doc:

http://www.postgresql.org/docs/current/static/plpgsql-statements.html#PLPGSQL-SELECT-INTO

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://"        RETURN ''http://'';    END IF;END;

full_name declared, but not used.

		
	

pgsql-docs by date:

Previous
From: elein
Date:
Subject: Re: [pgsql-www] 7.4 official docs : Fonts?
Next
From: "Dave Page"
Date:
Subject: Re: [pgsql-www] 7.4 official docs : Fonts?