We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2542f9 commit 4c83e03Copy full SHA for 4c83e03
src/pl/plpython/expected/plpython_types.out
@@ -664,6 +664,9 @@ SELECT * FROM test_type_conversion_array_error();
664
ERROR: return value of function with array return type is not a Python sequence
665
CONTEXT: while creating return value
666
PL/Python function "test_type_conversion_array_error"
667
+--
668
+-- Domains over arrays
669
670
CREATE DOMAIN ordered_pair_domain AS integer[] CHECK (array_length(VALUE,1)=2 AND VALUE[1] < VALUE[2]);
671
CREATE FUNCTION test_type_conversion_array_domain(x ordered_pair_domain) RETURNS ordered_pair_domain AS $$
672
plpy.info(x, type(x))
0 commit comments