Commit 6f64cf59 authored by Tom Lane's avatar Tom Lane

Get rid of inappropriate use of croak(). Per report from Michael Fuhr.

parent 95f202c0
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
* ENHANCEMENTS, OR MODIFICATIONS. * ENHANCEMENTS, OR MODIFICATIONS.
* *
* IDENTIFICATION * IDENTIFICATION
* $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.91 2005/08/24 18:16:56 tgl Exp $ * $PostgreSQL: pgsql/src/pl/plperl/plperl.c,v 1.92 2005/08/24 19:06:28 tgl Exp $
* *
**********************************************************************/ **********************************************************************/
...@@ -370,7 +370,7 @@ plperl_convert_to_pg_array(SV *src) ...@@ -370,7 +370,7 @@ plperl_convert_to_pg_array(SV *src)
SPAGAIN ; SPAGAIN ;
if (count != 1) if (count != 1)
croak("Big trouble\n") ; elog(ERROR, "unexpected _plperl_to_pg_array failure");
rv = POPs; rv = POPs;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment