diff options
author | Robert Haas <rhaas@postgresql.org> | 2012-01-31 13:16:38 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2012-01-31 13:16:38 -0500 |
commit | 5ae88c65da7d893e304a51bfc57b46d8b7653bd0 (patch) | |
tree | 7e1a94e0d55cc3c24ad31e8da28c5a08f33b146f /src | |
parent | c327108140b5dfc4db1fcb9d9ca647f483e0a153 (diff) | |
download | postgresql-5ae88c65da7d893e304a51bfc57b46d8b7653bd0.tar.gz postgresql-5ae88c65da7d893e304a51bfc57b46d8b7653bd0.zip |
Adjust expected regression test outputs for PL/python.
This got broken by commit 4c6cedd1b014abf2046886a9a92e10e18f0d658e,
which caused PL/pgsql error messages to print the function
signature, not just the name.
Per buildfarm.
Diffstat (limited to 'src')
-rw-r--r-- | src/pl/plpython/expected/plpython_error.out | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pl/plpython/expected/plpython_error.out b/src/pl/plpython/expected/plpython_error.out index bab07fbeb24..8c489923cec 100644 --- a/src/pl/plpython/expected/plpython_error.out +++ b/src/pl/plpython/expected/plpython_error.out @@ -292,7 +292,7 @@ PL/Python function "python_traceback" SELECT sql_error(); ERROR: division by zero CONTEXT: SQL statement "select 1/0" -PL/pgSQL function "sql_error" line 3 at SQL statement +PL/pgSQL function "sql_error()" line 3 at SQL statement SELECT python_from_sql_error(); ERROR: spiexceptions.DivisionByZero: division by zero CONTEXT: Traceback (most recent call last): @@ -306,7 +306,7 @@ CONTEXT: Traceback (most recent call last): plpy.execute("select sql_error()") PL/Python function "python_traceback" SQL statement "select python_traceback()" -PL/pgSQL function "python_from_sql_error" line 3 at SQL statement +PL/pgSQL function "python_from_sql_error()" line 3 at SQL statement SELECT sql_from_python_error(); ERROR: spiexceptions.DivisionByZero: division by zero CONTEXT: Traceback (most recent call last): |