pgsql: Fix uninitialized-variable compiler warning induced by commit e4

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)postgresql(dot)org
Subject: pgsql: Fix uninitialized-variable compiler warning induced by commit e4
Date: 2017-12-03 16:25:21
Message-ID: E1eLX4z-0003hW-FR@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix uninitialized-variable compiler warning induced by commit e4128ee76.

I'm a little bit astonished that anyone's compiler would have failed to
complain about this. The compiler surely does not know that is_procedure
means the function return value will be ignored.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/a852cfe96752b25c2deaa2653cffd60c0ec82ead

Modified Files
--------------
src/pl/plpython/plpy_exec.c | 2 ++
1 file changed, 2 insertions(+)

Browse pgsql-committers by date

  From Date Subject
Next Message Andres Freund 2017-12-03 18:39:28 Re: pgsql: Add some regression tests that exercise hash join code.
Previous Message Andres Freund 2017-12-02 01:35:12 pgsql: Adjust #ifdef EXEC_BACKEND RemovePgTempFilesInDir() call.