diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2013-11-27 14:22:33 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2013-11-27 14:25:13 +0200 |
commit | 4118f7e8ede8a3616189b53983aea293fd0b3cb1 (patch) | |
tree | e63df043e91bcea21de698e5da2bfba7ac34a75b | |
parent | 82b43f7df2036d06b4410721f77512969846b6d0 (diff) | |
download | postgresql-4118f7e8ede8a3616189b53983aea293fd0b3cb1.tar.gz postgresql-4118f7e8ede8a3616189b53983aea293fd0b3cb1.zip |
Fix plpython3 expected output.
I neglected this in the previous commit that updated the plpython2 output,
which I forgot to "git add" earlier.
As pointed out by Rodolfo Campero and Marko Kreen.
-rw-r--r-- | src/pl/plpython/expected/plpython_types_3.out | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pl/plpython/expected/plpython_types_3.out b/src/pl/plpython/expected/plpython_types_3.out index 25331f268a1..e10435653cd 100644 --- a/src/pl/plpython/expected/plpython_types_3.out +++ b/src/pl/plpython/expected/plpython_types_3.out @@ -664,6 +664,9 @@ SELECT * FROM test_type_conversion_array_error(); ERROR: return value of function with array return type is not a Python sequence CONTEXT: while creating return value PL/Python function "test_type_conversion_array_error" +-- +-- Domains over arrays +-- CREATE DOMAIN ordered_pair_domain AS integer[] CHECK (array_length(VALUE,1)=2 AND VALUE[1] < VALUE[2]); CREATE FUNCTION test_type_conversion_array_domain(x ordered_pair_domain) RETURNS ordered_pair_domain AS $$ plpy.info(x, type(x)) |