Re: BUG #6612: Functions can be called inside CHECK statements - Mailing list pgsql-bugs

From Kevin Grittner
Subject Re: BUG #6612: Functions can be called inside CHECK statements
Date
Msg-id 4F97CCB80200002500047332@gw.wicourts.gov
Whole thread Raw
In response to Re: BUG #6612: Functions can be called inside CHECK statements  (Greg Stark <stark@mit.edu>)
Responses Re: BUG #6612: Functions can be called inside CHECK statements  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: BUG #6612: Functions can be called inside CHECK statements  (Greg Stark <stark@mit.edu>)
List pgsql-bugs
Greg Stark <stark@mit.edu> wrote:

> Only IMMUTABLE functions can be used in CHECK constraints.
> It's a feature that expressions including subqueries are
> automatically detected as not being immutable and automatically
> barred.

It doesn't look like that to me:

test=# create function xxx() returns text volatile language plpgsql
as $$ begin return 'xxx'; end; $$;
CREATE FUNCTION
test=# create table x (id int not null primary key, val text check
(val <> xxx()));
NOTICE:  CREATE TABLE / PRIMARY KEY will create implicit index
"x_pkey" for table "x"
CREATE TABLE
test=# insert into x values (1, 'aaa');
INSERT 0 1
test=# insert into x values (2, 'xxx');
ERROR:  new row for relation "x" violates check constraint
"x_val_check"
DETAIL:  Failing row contains (2, xxx).

Perhaps you're thinking of function usage in index definitions?

A CHECK constraint using a volatile function is potentially valid
and useful, IMO.  Think about a column which is supposed to record
the moment of an event which has occurred.  It could make sense to
ensure that the timestamptz value is < now();  On the other hand, an
index entry based on now() is clearly a problem.

Otherwise I agree with your response -- this is clearly *not* a bug.

-Kevin

pgsql-bugs by date:

Previous
From: Greg Stark
Date:
Subject: Re: BUG #6612: Functions can be called inside CHECK statements
Next
From: "Kevin Grittner"
Date:
Subject: Re: Broken Pipe Error