In jsonb_plpython.c, suppress warning message from gcc 10. Very recent gcc complains that PLyObject_ToJsonbValue could return a pointer to a local variable. I think it's wrong; but the coding is fragile enough, and the savings of one palloc() minimal enough, that it seems better to just do a palloc() all the time. (My other idea of tweaking the if-condition doesn't suppress the warning.)
Back-patch to v11 where this code was introduced. Discussion: https://postgr.es/m/[email protected] Branch ------ REL_11_STABLE Details ------- https://git.postgresql.org/pg/commitdiff/39428be9ce8f4fa124ad6207e18e57c6c2478316 Modified Files -------------- contrib/jsonb_plpython/jsonb_plpython.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-)
