From 7f288a23484971dca7f75d866d0f1edb332fbc4b Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Sun, 11 Aug 2013 09:17:04 -0400 Subject: [PATCH] PL/Python: Adjust the regression tests for Python 3.3 Similar to 2cfb1c6f77734db81b6e74bcae630f93b94f69be, the order in which dictionary elements are printed is not reliable. This reappeared in the tests of the string representation of result objects. Reduce the test case to one result set column so that there is no question of order. --- src/pl/plpython/expected/plpython_spi.out | 8 ++++---- src/pl/plpython/sql/plpython_spi.sql | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pl/plpython/expected/plpython_spi.out b/src/pl/plpython/expected/plpython_spi.out index b07a429439..517579471c 100644 --- a/src/pl/plpython/expected/plpython_spi.out +++ b/src/pl/plpython/expected/plpython_spi.out @@ -269,10 +269,10 @@ plan = plpy.prepare(cmd) result = plpy.execute(plan) return str(result) $$ LANGUAGE plpythonu; -SELECT result_str_test($$SELECT 1 AS foo, '11'::text AS bar UNION SELECT 2, '22'$$); - result_str_test --------------------------------------------------------------------------------------- - +SELECT result_str_test($$SELECT 1 AS foo UNION SELECT 2$$); + result_str_test +------------------------------------------------------------ + (1 row) SELECT result_str_test($$CREATE TEMPORARY TABLE foo1 (a int, b text)$$); diff --git a/src/pl/plpython/sql/plpython_spi.sql b/src/pl/plpython/sql/plpython_spi.sql index 7a84473803..09f0d7f2d7 100644 --- a/src/pl/plpython/sql/plpython_spi.sql +++ b/src/pl/plpython/sql/plpython_spi.sql @@ -176,7 +176,7 @@ result = plpy.execute(plan) return str(result) $$ LANGUAGE plpythonu; -SELECT result_str_test($$SELECT 1 AS foo, '11'::text AS bar UNION SELECT 2, '22'$$); +SELECT result_str_test($$SELECT 1 AS foo UNION SELECT 2$$); SELECT result_str_test($$CREATE TEMPORARY TABLE foo1 (a int, b text)$$); -- cursor objects -- 2.40.0