possible constraint bug? - Mailing list pgsql-hackers

From Thomas Swan
Subject possible constraint bug?
Date
Msg-id 5.0.0.13.2.20000818132426.00aeaed0@sunset.backbone.olemiss.edu
Whole thread Raw
Responses Re: possible constraint bug?
List pgsql-hackers
Using Postgresql 7.0.2 (Linux x86, 2.2.16)

CERATE FUNCTION foo(text)

CREATE TABLE bar(
        fud TEXT CHECK (foo(fud))
);

DROP FUNCTION foo(TEXT);
CREATE FUNCTION foo( .....);

INSERT INTO bar VALUES ('Hey'); results in the following error

ERROR init_fcache: Cache lookup failed for procedure 128384

Is this particular to postgres or is this a normal SQLxx standard behavior?
-
- Thomas Swan                                   
- Graduate Student  - Computer Science
- The University of Mississippi
-
- "People can be categorized into two fundamental
- groups, those that divide people into two groups
- and those that don't."

pgsql-hackers by date:

Previous
From: Ned Lilly
Date:
Subject: Re: benchmarks - anyone can make em
Next
From: Stephan Szabo
Date:
Subject: Re: possible constraint bug?