mirror of https://github.com/postgres/postgres
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
580 B
20 lines
580 B
|
25 years ago
|
SELECT invalid_type_uncaught('rick');
|
||
|
|
ERROR: plpython: Call of function `__plpython_procedure_invalid_type_uncaught_1175341' failed.
|
||
|
|
plpy.SPIError: Cache lookup for type `test' failed.
|
||
|
|
SELECT invalid_type_caught('rick');
|
||
|
|
NOTICE: ("Cache lookup for type `test' failed.",)
|
||
|
|
invalid_type_caught
|
||
|
|
---------------------
|
||
|
|
|
||
|
|
(1 row)
|
||
|
|
|
||
|
|
SELECT invalid_type_reraised('rick');
|
||
|
|
ERROR: plpython: Call of function `__plpython_procedure_invalid_type_reraised_1175343' failed.
|
||
|
|
plpy.Error: ("Cache lookup for type `test' failed.",)
|
||
|
|
SELECT valid_type('rick');
|
||
|
|
valid_type
|
||
|
|
------------
|
||
|
|
|
||
|
|
(1 row)
|
||
|
|
|