Re: plpgsql mixing variable in SELECT INTO ?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Ben-Nes Michael" <miki(at)canaan(dot)co(dot)il>
Cc: "postgresql" <pgsql-general(at)postgresql(dot)org>
Subject: Re: plpgsql mixing variable in SELECT INTO ?
Date: 2003-03-03 14:52:27
Message-ID: 6528.1046703147@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

"Ben-Nes Michael" <miki(at)canaan(dot)co(dot)il> writes:
> The following line works:
> SELECT * INTO lft_rgt FROM forum_tree WHERE node_id = v_node_id;
> RETURN lft_rgt.f_id;
> The following lines dont work ( variable get mixed ), lft_rgt.f_id return
> lft_rgt.rgt :(
> SELECT lft, rgt, f_id INTO lft_rgt FROM forum_tree WHERE node_id =
> v_node_id;
> RETURN lft_rgt.f_id;

If this is meant as a bug report, it is entirely useless. Please give a
complete, standalone example that someone else can run to reproduce the
problem. You can't expect us to guess our way to all the context
involved in this query.

The bug reporting guidelines in the User's Guide
http://www.ca.postgresql.org/users-lounge/docs/7.3/postgres/bug-reporting.html
are a tad verbose but are worth reading.

regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Ian Harding 2003-03-03 14:58:15 tsearch trouble REPOST
Previous Message Marc G. Fournier 2003-03-03 14:52:14 Re: Off topic - was Re: [PATCHES] ALTER SEQUENCE