Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit e131ba4

Browse files
committed
Fix regression test to also work with Python 2.
Per buildfarm.
1 parent 56f3900 commit e131ba4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pl/plpython/expected/plpython_composite.out

+1-1
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ SELECT * FROM return_record_2('v3') AS (v1 int, v2 int, v3 int);
572572
-- multi-dimensional array of composite types.
573573
CREATE FUNCTION composite_type_as_list() RETURNS type_record[] AS $$
574574
return [[('first', 1), ('second', 1)], [('first', 2), ('second', 2)], [('first', 3), ('second', 3)]];
575-
$$ LANGUAGE plpython3u;
575+
$$ LANGUAGE plpythonu;
576576
SELECT * FROM composite_type_as_list();
577577
composite_type_as_list
578578
------------------------------------------------------------------------------------

0 commit comments

Comments
 (0)