possible constraint bug?

From: Thomas Swan <tswan(at)olemiss(dot)edu>
To: pgsql-hackers(at)postgresql(dot)org
Subject: possible constraint bug?
Date: 2000-08-18 19:35:05
Message-ID: 5.0.0.13.2.20000818132426.00aeaed0@sunset.backbone.olemiss.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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."

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Don Baccus 2000-08-18 19:53:37 Re: possible constraint bug?
Previous Message Ned Lilly 2000-08-18 18:58:55 Re: benchmarks - anyone can make em