From: Alvaro Herrera Date: Tue, 9 Nov 2010 14:00:56 +0000 (-0300) Subject: plpython has plpy.Error instead of plpy.ERROR X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=73bc5218df0330a4beb737f497fa8d7b337c9f90;p=users%2Fhanada%2Fpostgres.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 6eb884e0dc..9fc8808776 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.