From: | Philip Warner <pjw(at)rhyme(dot)com(dot)au> |
---|---|
To: | "Oliver Elphick" <olly(at)lfix(dot)co(dot)uk>, pgsql-sql(at)postgresql(dot)org |
Subject: | Re: Can I use subselect as a function parameter? |
Date: | 2000-10-11 14:55:03 |
Message-ID: | 3.0.5.32.20001012005503.02140d00@mail.rhyme.com.au |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
At 14:42 11/10/00 +0100, Oliver Elphick wrote:
>
> CONSTRAINT ean CHECK (
> CASE WHEN eancode IS NULL OR brand IS NULL
> THEN 't'
> ELSE ean_checkdigit(
> (SELECT ean_prefix
> FROM brandname, product
> WHERE brandname.id = product.brand
> ), eancode)
> END
> )
>);
>
>
>Can this be made to work at all (in 7.0.2)?
>
The short answer is that subselect in CHECK is not currently supported, and
is not planned for 7.1.
There was a thread about subselect in CHECK not so long ago (see 'checking
number of entries' on or around the 29/9). There was apparently also an
earlier discussion in which the meaning were not deemed to be clear. I
think the most recent discussion at least resolved the meaning, but not the
locking issues.
----------------------------------------------------------------
Philip Warner | __---_____
Albatross Consulting Pty. Ltd. |----/ - \
(A.B.N. 75 008 659 498) | /(@) ______---_
Tel: (+61) 0500 83 82 81 | _________ \
Fax: (+61) 0500 83 82 82 | ___________ |
Http://www.rhyme.com.au | / \|
| --________--
PGP key available upon request, | /
and from pgp5.ai.mit.edu:11371 |/
From | Date | Subject | |
---|---|---|---|
Next Message | Colleen Williams | 2000-10-11 15:56:16 | SQL to retrieve foreign keys |
Previous Message | Mark Volpe | 2000-10-11 14:49:28 | AFTER triggers, short question |