From b58bacdacbb15948cf24c786ebbb92213a2fe013 Mon Sep 17 00:00:00 2001 From: Joe Conway Date: Wed, 9 May 2012 22:57:19 -0700 Subject: [PATCH] PL/pgSQL RETURN NEXT was leaking converted tuples, causing out of memory when looping through large numbers of rows. Flag the converted tuples to be freed. Complaint and patch by Joe. --- src/pl/plpgsql/src/pl_exec.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pl/plpgsql/src/pl_exec.c b/src/pl/plpgsql/src/pl_exec.c index a385b9a82a..95e74b38dc 100644 --- a/src/pl/plpgsql/src/pl_exec.c +++ b/src/pl/plpgsql/src/pl_exec.c @@ -2472,6 +2472,7 @@ exec_stmt_return_next(PLpgSQL_execstate *estate, { tuple = do_convert_tuple(tuple, tupmap); free_conversion_map(tupmap); + free_tuple = true; } } break; -- 2.40.0