diff options
| author | Peter Eisentraut <peter_e@gmx.net> | 2009-12-15 22:59:55 +0000 |
|---|---|---|
| committer | Peter Eisentraut <peter_e@gmx.net> | 2009-12-15 22:59:55 +0000 |
| commit | dd4cd55c15886c46378dc27f44f59a6de8c4d45b (patch) | |
| tree | 021133526bdb9db2cb6968f0eecde686d008eb1b /src/pl/plpython/expected/plpython_trigger.out | |
| parent | 21d11e7ee2d9fb47fc06b53f8e54fe07e7f1c18a (diff) | |
| download | postgresql-dd4cd55c15886c46378dc27f44f59a6de8c4d45b.tar.gz | |
Python 3 support in PL/Python
Behaves more or less unchanged compared to Python 2, but the new language
variant is called plpython3u. Documentation describing the naming scheme
is included.
Diffstat (limited to 'src/pl/plpython/expected/plpython_trigger.out')
| -rw-r--r-- | src/pl/plpython/expected/plpython_trigger.out | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pl/plpython/expected/plpython_trigger.out b/src/pl/plpython/expected/plpython_trigger.out index cf5c758fb2..3192ff1d48 100644 --- a/src/pl/plpython/expected/plpython_trigger.out +++ b/src/pl/plpython/expected/plpython_trigger.out @@ -67,7 +67,7 @@ SELECT * FROM users; -- dump trigger data CREATE TABLE trigger_test (i int, v text ); -CREATE FUNCTION trigger_data() returns trigger language plpythonu as $$ +CREATE FUNCTION trigger_data() RETURNS trigger LANGUAGE plpythonu AS $$ if 'relid' in TD: TD['relid'] = "bogus:12345" |
