From: Peter Eisentraut Date: Wed, 11 Mar 2015 22:30:34 +0000 (-0400) Subject: PL/Python: Fix regression tests for Python 3 X-Git-Tag: REL9_5_ALPHA1~630 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ff2faeec5c77539f3c64e6e7d94af1b00a168d10;p=thirdparty%2Fpostgresql.git PL/Python: Fix regression tests for Python 3 --- diff --git a/src/pl/plpython/expected/plpython_types_3.out b/src/pl/plpython/expected/plpython_types_3.out index a3f9d4c50b6..c439011ba3a 100644 --- a/src/pl/plpython/expected/plpython_types_3.out +++ b/src/pl/plpython/expected/plpython_types_3.out @@ -354,6 +354,14 @@ CONTEXT: PL/Python function "test_type_conversion_float8" (1 row) +SELECT * FROM test_type_conversion_float8(100100100.654321); +INFO: (100100100.654321, ) +CONTEXT: PL/Python function "test_type_conversion_float8" + test_type_conversion_float8 +----------------------------- + 100100100.654321 +(1 row) + CREATE FUNCTION test_type_conversion_oid(x oid) RETURNS oid AS $$ plpy.info(x, type(x)) return x