Skip to content
Snippets Groups Projects
Commit 73bc5218 authored by Alvaro Herrera's avatar Alvaro Herrera
Browse files

plpython has plpy.Error instead of plpy.ERROR

Author: Marti Raudsepp <marti@juffo.org>
parent 54428dbe
No related branches found
No related tags found
No related merge requests found
...@@ -954,8 +954,8 @@ $$ LANGUAGE plpythonu; ...@@ -954,8 +954,8 @@ $$ LANGUAGE plpythonu;
<function>plpy.fatal</function> actually raise a Python exception <function>plpy.fatal</function> actually raise a Python exception
which, if uncaught, propagates out to the calling query, causing which, if uncaught, propagates out to the calling query, causing
the current transaction or subtransaction to be aborted. the current transaction or subtransaction to be aborted.
<literal>raise plpy.ERROR(<replaceable>msg</>)</literal> and <literal>raise plpy.Error(<replaceable>msg</>)</literal> and
<literal>raise plpy.FATAL(<replaceable>msg</>)</literal> are <literal>raise plpy.Fatal(<replaceable>msg</>)</literal> are
equivalent to calling equivalent to calling
<function>plpy.error</function> and <function>plpy.error</function> and
<function>plpy.fatal</function>, respectively. <function>plpy.fatal</function>, respectively.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment