diff options
author | Peter Eisentraut | 2011-04-06 20:19:00 +0000 |
---|---|---|
committer | Peter Eisentraut | 2011-04-06 20:19:00 +0000 |
commit | 5d0e462366f4521e37744fdb42fed3c6819a3374 (patch) | |
tree | 082f3d92015e5c010b5ad73b1d365b362068abab | |
parent | c75163842cf93fd7b6311df2c5545bf09447b870 (diff) |
Update regression test files for PL/Python traceback patch
-rw-r--r-- | src/pl/plpython/expected/plpython_unicode_3.out | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/pl/plpython/expected/plpython_unicode_3.out b/src/pl/plpython/expected/plpython_unicode_3.out index 8c7a61f9d1f..d023bc9b73a 100644 --- a/src/pl/plpython/expected/plpython_unicode_3.out +++ b/src/pl/plpython/expected/plpython_unicode_3.out @@ -41,7 +41,10 @@ SELECT * FROM unicode_test; SELECT unicode_plan1(); ERROR: spiexceptions.InternalError: could not convert Python Unicode object to PostgreSQL server encoding DETAIL: UnicodeEncodeError: 'ascii' codec can't encode character u'\x80' in position 0: ordinal not in range(128) -CONTEXT: PL/Python function "unicode_plan1" +CONTEXT: Traceback (most recent call last): + PL/Python function "unicode_plan1", line 3, in <module> + rv = plpy.execute(plan, [u"\x80"], 1) +PL/Python function "unicode_plan1" SELECT unicode_plan2(); unicode_plan2 --------------- |