提交 c3fc2bf7 编写于 作者: T Tom Lane

Suppress a possibly-uninitialized-variable warning. (I'm only seeing it

on Apple's gcc and not my other machines, but still it seems worth
getting rid of.)
上级 1d890267
......@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.215 2008/05/15 22:39:49 tgl Exp $
* $PostgreSQL: pgsql/src/pl/plpgsql/src/pl_exec.c,v 1.216 2008/05/16 18:34:51 tgl Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -4047,7 +4047,7 @@ exec_eval_expr(PLpgSQL_execstate *estate,
bool *isNull,
Oid *rettype)
{
Datum result;
Datum result = 0;
int rc;
/*
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册