summaryrefslogtreecommitdiff
path: root/src/pl
diff options
context:
space:
mode:
authorHeikki Linnakangas2013-11-26 21:05:28 +0000
committerHeikki Linnakangas2013-11-26 21:05:48 +0000
commit4c83e0353f2c396e9e89fee564d9a5b868d5c3b2 (patch)
treee2329f9b089e2f1bd7589ed7885b3b0d691c3a4c /src/pl
parentd2542f9270e9587f54a63fd6ffbdd124abc6f80c (diff)
Oops, forgot to "git add" last minute changes to regression test.
Diffstat (limited to 'src/pl')
-rw-r--r--src/pl/plpython/expected/plpython_types.out3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pl/plpython/expected/plpython_types.out b/src/pl/plpython/expected/plpython_types.out
index 785ffca9cd8..b98318cb6c9 100644
--- 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))