mirror of
https://github.com/postgres/postgres.git
synced 2025-06-26 12:21:12 +03:00
Update expected files for older Python versions
neglected in commit fa03769e4c
This commit is contained in:
@ -128,7 +128,7 @@ with plpy.subtransaction():
|
|||||||
except plpy.SPIError, e:
|
except plpy.SPIError, e:
|
||||||
if not swallow:
|
if not swallow:
|
||||||
raise
|
raise
|
||||||
plpy.notice("Swallowed %r" % e)
|
plpy.notice("Swallowed %s(%r)" % (e.__class__.__name__, e.args[0]))
|
||||||
return "ok"
|
return "ok"
|
||||||
$$ LANGUAGE plpythonu;
|
$$ LANGUAGE plpythonu;
|
||||||
ERROR: could not compile PL/Python function "subtransaction_nested_test"
|
ERROR: could not compile PL/Python function "subtransaction_nested_test"
|
||||||
|
@ -128,7 +128,7 @@ with plpy.subtransaction():
|
|||||||
except plpy.SPIError, e:
|
except plpy.SPIError, e:
|
||||||
if not swallow:
|
if not swallow:
|
||||||
raise
|
raise
|
||||||
plpy.notice("Swallowed %r" % e)
|
plpy.notice("Swallowed %s(%r)" % (e.__class__.__name__, e.args[0]))
|
||||||
return "ok"
|
return "ok"
|
||||||
$$ LANGUAGE plpythonu;
|
$$ LANGUAGE plpythonu;
|
||||||
ERROR: could not compile PL/Python function "subtransaction_nested_test"
|
ERROR: could not compile PL/Python function "subtransaction_nested_test"
|
||||||
|
Reference in New Issue
Block a user