mirror of
https://github.com/postgres/postgres.git
synced 2026-04-15 22:10:45 -04:00
Update expected files for older Python versions
neglected in commit fa03769e4c
This commit is contained in:
parent
bad51a49a4
commit
7d8679975f
2 changed files with 2 additions and 2 deletions
|
|
@ -128,7 +128,7 @@ with plpy.subtransaction():
|
|||
except plpy.SPIError, e:
|
||||
if not swallow:
|
||||
raise
|
||||
plpy.notice("Swallowed %r" % e)
|
||||
plpy.notice("Swallowed %s(%r)" % (e.__class__.__name__, e.args[0]))
|
||||
return "ok"
|
||||
$$ LANGUAGE plpythonu;
|
||||
ERROR: could not compile PL/Python function "subtransaction_nested_test"
|
||||
|
|
|
|||
|
|
@ -128,7 +128,7 @@ with plpy.subtransaction():
|
|||
except plpy.SPIError, e:
|
||||
if not swallow:
|
||||
raise
|
||||
plpy.notice("Swallowed %r" % e)
|
||||
plpy.notice("Swallowed %s(%r)" % (e.__class__.__name__, e.args[0]))
|
||||
return "ok"
|
||||
$$ LANGUAGE plpythonu;
|
||||
ERROR: could not compile PL/Python function "subtransaction_nested_test"
|
||||
|
|
|
|||
Loading…
Reference in a new issue