Re: plpgsql problem

From: Stephan Szabo <sszabo(at)megazone23(dot)bigpanda(dot)com>
To: Lehel Gyuro <lehel(at)bin(dot)hu>
Cc: pgsql-hackers(at)postgresql(dot)org
Subject: Re: plpgsql problem
Date: 2001-04-18 05:54:42
Message-ID: Pine.BSF.4.21.0104172252140.80616-100000@megazone23.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers


My guess is that since userid and userID differ only in
case, it's probably not actually using the aliased version
and instead is using only the column one.

The execute is different since you're effectively putting
the *value* of userID into the query as opposed to the word.
I'd suggest renaiming the alias and seeing if that works.

On Tue, 17 Apr 2001, Lehel Gyuro wrote:

> CREATE FUNCTION userHasAll (int4,int4) RETURNS boolean AS '
> DECLARE
> row RECORD;
> kirakorow kirakok%ROWTYPE;
> userID ALIAS FOR $1;
> kirakoID ALIAS FOR $2;
> megvan int4:=0;
> kepdarabok INTEGER:=0;
> query text;
> BEGIN
> SELECT * INTO kirakorow FROM kirakok WHERE kirako_id=kirakoID;
> -- this works
>
> IF NOT FOUND THEN
> RAISE EXCEPTION ''Invalid kirakoID'';
> RETURN ''f'';
> END IF;
>
> kepdarabok:=kirakorow.kepdarabokx*kirakorow.kepdaraboky;
> megvan:=0;
>
> FOR row IN EXECUTE ''SELECT count(*) AS hits FROM talalatok WHERE userid='''''' || userID || '''''' AND jatek='''''' || kirakoID || '''''';'' LOOP
> -- this works too but if you replace it with the following row :
> -- FOR row IN SELECT count(*) AS hits FROM talalatok WHERE userid=userID AND jatek=kirakoID LOOP
> -- this executes as if the following query was issued
> -- FOR row IN SELECT count(*) AS hits FROM talalatok WHERE jatek=kirakoID LOOP
> megvan:=row.hits;
> END LOOP;
> -- the same applies to inline queries too. if issued with execute
> -- everything is fine, but if the query has more than one arguments
> -- the compiler dismisses all, except the last one
>
> IF megvan<>kepdarabok THEN
> RETURN ''f'';
> END IF;
>
> RETURN ''t'';
> END;
> ' LANGUAGE 'plpgsql';
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: subscribe and unsubscribe commands go to majordomo(at)postgresql(dot)org
>

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2001-04-18 05:57:05 Re: Re: No printable 7.1 docs?
Previous Message Thomas Lockhart 2001-04-18 04:48:24 Re: Re: No printable 7.1 docs?