We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent54428db commit73bc521Copy full SHA for 73bc521
doc/src/sgml/plpython.sgml
@@ -954,8 +954,8 @@ $$ LANGUAGE plpythonu;
954
<function>plpy.fatal</function> actually raise a Python exception
955
which, if uncaught, propagates out to the calling query, causing
956
the current transaction or subtransaction to be aborted.
957
- <literal>raise plpy.ERROR(<replaceable>msg</>)</literal> and
958
- <literal>raise plpy.FATAL(<replaceable>msg</>)</literal> are
+ <literal>raise plpy.Error(<replaceable>msg</>)</literal> and
+ <literal>raise plpy.Fatal(<replaceable>msg</>)</literal> are
959
equivalent to calling
960
<function>plpy.error</function> and
961
<function>plpy.fatal</function>, respectively.