mirror of
https://github.com/postgres/postgres.git
synced 2025-05-02 11:44:50 +03:00
Update expected files for older Python versions
neglected in commit fa03769e4c4bf0911da71fba2501006b05ea195a
This commit is contained in:
parent
bad51a49a4
commit
7d8679975f
@ -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"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user