Re: checking pgsql functions

From: Michael Fuhr <mike(at)fuhr(dot)org>
To: Enrico Weigelt <weigelt(at)metux(dot)de>
Cc: pgsql-sql <pgsql-sql(at)postgresql(dot)org>
Subject: Re: checking pgsql functions
Date: 2005-04-21 03:39:40
Message-ID: 20050421033939.GA18039@winnie.fuhr.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Thu, Apr 21, 2005 at 04:35:37AM +0200, Enrico Weigelt wrote:
>
> Is it possible to check plpgsql functions before they're actually
> into the database, as it's done w/ sql functions ?

What version of PostgreSQL are you using? 8.0 and later have a
validator function for PL/pgSQL, although its syntax checks are
minimal and errors can still get through. I'm sure a patch that
improves it would be welcome :-)

> Often I've got the problem that a function still contains some
> syntax errors (well, nobody's perfect), but my application is
> quite critical (a single crashing trigger may cost a lot of money).
> So I'd like to checkin only syntactically correct (also with
> correct references).

Since the application is critical, hopefully you're running regression
tests in a non-production environment before modifying the production
system. Is that not the case? Regardless of how much syntax checking
the DBMS does, it would still be prudent to test as many code paths as
possible for semantic correctness.

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message KÖPFERL Robert 2005-04-21 06:43:03 Re: Function to either return one or all records
Previous Message Tom Lane 2005-04-21 03:25:11 Re: checking pgsql functions