diff options
| author | Peter Eisentraut | 2015-03-11 22:30:34 +0000 |
|---|---|---|
| committer | Peter Eisentraut | 2015-03-11 22:30:56 +0000 |
| commit | ff2faeec5c77539f3c64e6e7d94af1b00a168d10 (patch) | |
| tree | a50de9e16d66b974312bc26016d678a7b8f90b88 /src/pl | |
| parent | 4464303405f1f886d63f8316386621cd7436c5d6 (diff) | |
PL/Python: Fix regression tests for Python 3
Diffstat (limited to 'src/pl')
| -rw-r--r-- | src/pl/plpython/expected/plpython_types_3.out | 8 |
1 files changed, 8 insertions, 0 deletions
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, <class 'float'>) +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 |
