Re: Stored procedures and "pseudo" fields..

From: Markus Bertheau <twanger(at)bluetwanger(dot)de>
To: Tomasz Myrta <jasiek(at)klaster(dot)net>
Cc: Lars Erik Thorsplass <thorsplass(at)gmail(dot)com>, pgsql-sql(at)postgresql(dot)org
Subject: Re: Stored procedures and "pseudo" fields..
Date: 2004-07-20 14:11:16
Message-ID: 1090332676.3241.31.camel@dicaprio.akademie1.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-sql

В Втр, 20.07.2004, в 15:57, Tomasz Myrta пишет:
> On 2004-07-20 15:34, Użytkownik Lars Erik Thorsplass napisał:
> > My stored procedure "acl_check()" takes two integers as parameters.
> > Param1 is the object id to check acl on, Param 2 is the object id of
> > the user currently using the system. The procedure returns a positive
> > number (1 or 3 ) if you have some kind of access to the object. As one
> > might understand I want the returned value from the acl_check()
> > procedure to be a part of the result set.
> >
> > Kinda like this:
> >
> > SELECT *, acl_check( objects.obid, <user_id> ) AS mode FROM objects
> > WHERE mode > 0;
> >
> > This gives me a: ERROR: column "mode" does not exist
>
> You can't access column output alias in where clause. Instead you have
> to use your function twice:
>
> SELECT *, acl_check( objects.obid, <user_id> ) AS mode FROM objects
> WHERE acl_check( objects.obid, <user_id> ) > 0;

and if you properly marked the function STABLE and I am not mistaken,
then PostgreSQL is smart enough to execute the function only once per
row.

--
Markus Bertheau <twanger(at)bluetwanger(dot)de>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Scott Marlowe 2004-07-20 15:45:06 Re: Stored procedures and "pseudo" fields..
Previous Message Tomasz Myrta 2004-07-20 13:57:37 Re: Stored procedures and "pseudo" fields..

Browse pgsql-sql by date

  From Date Subject
Next Message Vic Ricker 2004-07-20 14:21:37 Re: How do I convice postgres to use an index?
Previous Message Tomasz Myrta 2004-07-20 13:57:37 Re: Stored procedures and "pseudo" fields..