projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d2542f9
)
Oops, forgot to "git add" last minute changes to regression test.
author
Heikki Linnakangas
Tue, 26 Nov 2013 21:05:28 +0000
(23:05 +0200)
committer
Heikki Linnakangas
Tue, 26 Nov 2013 21:05:48 +0000
(23:05 +0200)
src/pl/plpython/expected/plpython_types.out
patch
|
blob
|
blame
|
history
diff --git
a/src/pl/plpython/expected/plpython_types.out
b/src/pl/plpython/expected/plpython_types.out
index 785ffca9cd8f78ffda13a67f53a80ec2f47b985a..b98318cb6c94b28cf696375c299a1650c713a926 100644
(file)
--- a/
src/pl/plpython/expected/plpython_types.out
+++ b/
src/pl/plpython/expected/plpython_types.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))