aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2003-07-26 00:02:02 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2003-07-26 00:02:02 +0000
commit5f2499d5af493673e7a15bd3756ab81d7816e57c (patch)
tree50b2fa5a08bc1134df8d6f4e7fa55c4667c3671c
parent3b04893ffc5d856ecc2dcf0e903b2fe956d9ba29 (diff)
downloadpostgresql-5f2499d5af493673e7a15bd3756ab81d7816e57c.tar.gz
postgresql-5f2499d5af493673e7a15bd3756ab81d7816e57c.zip
Update to match error editing.
-rw-r--r--src/pl/plpython/error.expected12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pl/plpython/error.expected b/src/pl/plpython/error.expected
index b00f8d4a40e..3c1614769e8 100644
--- a/src/pl/plpython/error.expected
+++ b/src/pl/plpython/error.expected
@@ -1,15 +1,15 @@
SELECT invalid_type_uncaught('rick');
WARNING: plpython: in function invalid_type_uncaught:
-plpy.SPIError: Unknown error in PLy_spi_prepare.
-ERROR: Type "test" does not exist
+DETAIL: plpy.SPIError: Unknown error in PLy_spi_prepare
+ERROR: type "test" does not exist
SELECT invalid_type_caught('rick');
WARNING: plpython: in function invalid_type_caught:
-plpy.SPIError: Unknown error in PLy_spi_prepare.
-ERROR: Type "test" does not exist
+DETAIL: plpy.SPIError: Unknown error in PLy_spi_prepare
+ERROR: type "test" does not exist
SELECT invalid_type_reraised('rick');
WARNING: plpython: in function invalid_type_reraised:
-plpy.SPIError: Unknown error in PLy_spi_prepare.
-ERROR: Type "test" does not exist
+DETAIL: plpy.SPIError: Unknown error in PLy_spi_prepare
+ERROR: type "test" does not exist
SELECT valid_type('rick');
valid_type
------------