diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2018-01-22 12:09:52 -0500 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2018-01-22 12:09:52 -0500 |
| commit | f498704346a4ce4953fc5f837cacb545b3166ee1 (patch) | |
| tree | 8b2fc5014d9d9651b5c7ef6ea9e975b1a374a5e5 /src/pl/plpython/expected | |
| parent | 2b792ab094415f351abd5854de5cefb023931a85 (diff) | |
| download | postgresql-f498704346a4ce4953fc5f837cacb545b3166ee1.tar.gz | |
PL/Python: Fix tests for older Python versions
Commit 8561e4840c81f7e345be2df170839846814fa004 neglected to handle
older Python versions that don't support the "with" statement. So write
the tests in a way that older versions can handle as well.
Diffstat (limited to 'src/pl/plpython/expected')
| -rw-r--r-- | src/pl/plpython/expected/plpython_transaction.out | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/pl/plpython/expected/plpython_transaction.out b/src/pl/plpython/expected/plpython_transaction.out index 1fadc69b63..6f6dfadf9c 100644 --- a/src/pl/plpython/expected/plpython_transaction.out +++ b/src/pl/plpython/expected/plpython_transaction.out @@ -95,8 +95,9 @@ CONTEXT: Traceback (most recent call last): PL/Python function "transaction_test4" -- commit inside subtransaction (prohibited) DO LANGUAGE plpythonu $$ -with plpy.subtransaction(): - plpy.commit() +s = plpy.subtransaction() +s.enter() +plpy.commit() $$; WARNING: forcibly aborting a subtransaction that has not been exited ERROR: cannot commit while a subtransaction is active |
