Re: 8.1 and syntax checking at create time - Mailing list pgsql-hackers

From Tony Caduto
Subject Re: 8.1 and syntax checking at create time
Date
Msg-id 431615DF.3050105@amsoftwaredesign.com
Whole thread Raw
In response to 8.1 and syntax checking at create time  (Tony Caduto <tony_caduto@amsoftwaredesign.com>)
List pgsql-hackers
Tom,
I successfully updated my database to use the validator function without 
dropping it using:

CREATE FUNCTION "plpgsql_validator" (oid) RETURNS void AS 
'$libdir/plpgsql' LANGUAGE C;
UPDATE pg_language SET lanvalidator = 'plpgsql_validator'::regproc
WHERE lanname = 'plpgsql';

The create checking is *much* better now :-)

Thanks to everyone for helping me track this down, turned out it had 
nothing to do with 8.1 but I didn't know that.
Sorry about that.

Tony

>That would not create a dependency from the language to the validator,
>but in practice you probably don't care about that.  The bigger problem
>for Tony is likely to be that plpgsql_validator() doesn't exist as a
>function in his database; he'll have to create it (see createlang -e
>for a reference) first.
>
>            regards, tom lane
>
>  
>



pgsql-hackers by date:

Previous
From: Michael Fuhr
Date:
Subject: Re: 8.1 and syntax checking at create time
Next
From: Martijn van Oosterhout
Date:
Subject: Re: On hardcoded type aliases and typmod for user types