From: Alvaro Herrera Date: Tue, 9 Nov 2010 14:00:56 +0000 (-0300) Subject: plpython has plpy.Error instead of plpy.ERROR X-Git-Tag: REL9_1_ALPHA3~200 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=73bc5218df0330a4beb737f497fa8d7b337c9f90;p=postgresql.git plpython has plpy.Error instead of plpy.ERROR Author: Marti Raudsepp --- diff --git a/doc/src/sgml/plpython.sgml b/doc/src/sgml/plpython.sgml index 6eb884e0dc5..9fc8808776c 100644 --- a/doc/src/sgml/plpython.sgml +++ b/doc/src/sgml/plpython.sgml @@ -954,8 +954,8 @@ $$ LANGUAGE plpythonu; plpy.fatal actually raise a Python exception which, if uncaught, propagates out to the calling query, causing the current transaction or subtransaction to be aborted. - raise plpy.ERROR(msg) and - raise plpy.FATAL(msg) are + raise plpy.Error(msg) and + raise plpy.Fatal(msg) are equivalent to calling plpy.error and plpy.fatal, respectively.