]> granicus.if.org Git - postgresql/commitdiff
Adjust PL/Python regression tests some more for Python 3.3.
authorTom Lane <tgl@sss.pgh.pa.us>
Sat, 8 Sep 2012 21:39:02 +0000 (17:39 -0400)
committerTom Lane <tgl@sss.pgh.pa.us>
Sat, 8 Sep 2012 21:39:02 +0000 (17:39 -0400)
Commit 2cfb1c6f77734db81b6e74bcae630f93b94f69be fixed some issues caused
by Python 3.3 choosing to iterate through dict entries in a different order
than before.  But here's another one: the test cases adjusted here made two
bad entries in a dict and expected the one complained of would always be
the same.

Possibly this should be back-patched further than 9.2, but there seems
little point unless the earlier fix is too.

src/pl/plpython/expected/plpython_trigger.out
src/pl/plpython/sql/plpython_trigger.sql

index 4c46b2b8f21971b21500af62c92c211c3b90b4da..25060b09b78d713fbfd750b7d42b6e821444476c 100644 (file)
@@ -476,7 +476,7 @@ DROP TRIGGER stupid_trigger6 ON trigger_test;
 -- TD keys not corresponding to row columns
 CREATE FUNCTION stupid7() RETURNS trigger
 AS $$
-    TD["new"] = {'a': 'foo', 'b': 'bar'}
+    TD["new"] = {'v': 'foo', 'a': 'bar'}
     return "MODIFY";
 $$ LANGUAGE plpythonu;
 CREATE TRIGGER stupid_trigger7
@@ -490,7 +490,7 @@ DROP TRIGGER stupid_trigger7 ON trigger_test;
 -- Unicode variant
 CREATE FUNCTION stupid7u() RETURNS trigger
 AS $$
-    TD["new"] = {u'a': 'foo', u'b': 'bar'}
+    TD["new"] = {u'v': 'foo', u'a': 'bar'}
     return "MODIFY"
 $$ LANGUAGE plpythonu;
 CREATE TRIGGER stupid_trigger7
index 2a4859f2aa232b05234c17564d945286090ea33f..9727f44f8b484597cbf23c0b2036cfb49ca5af0c 100644 (file)
@@ -253,7 +253,7 @@ DROP TRIGGER stupid_trigger6 ON trigger_test;
 
 CREATE FUNCTION stupid7() RETURNS trigger
 AS $$
-    TD["new"] = {'a': 'foo', 'b': 'bar'}
+    TD["new"] = {'v': 'foo', 'a': 'bar'}
     return "MODIFY";
 $$ LANGUAGE plpythonu;
 
@@ -270,7 +270,7 @@ DROP TRIGGER stupid_trigger7 ON trigger_test;
 
 CREATE FUNCTION stupid7u() RETURNS trigger
 AS $$
-    TD["new"] = {u'a': 'foo', u'b': 'bar'}
+    TD["new"] = {u'v': 'foo', u'a': 'bar'}
     return "MODIFY"
 $$ LANGUAGE plpythonu;