[pgpool-committers: 5205] pgpool: Fix memory leak when query cache enabled in streaming replicati

Tatsuo Ishii ishii at sraoss.co.jp
Thu Oct 11 18:03:07 JST 2018


Fix memory leak when query cache enabled in streaming replication mode + extended query case.

If BEGIN is executed in extended protocol, allocated temp buffer for
the command never discarded.  This is because in streaming replication
mode + extended query case, when handle_query_cache gets called at the
command complete timing, the reference counter to query context is not
0, which in turn prevents from calling
pool_discard_temp_query_cache().

In reality, we don't need to care about the query context here, so
let's proceed in streaming replication mode + extended query case.

Note that the memory leak case can be easily reproduced by "pgbench -M
extended" command (standard TPC-B).

Branch
------
master

Details
-------
https://git.postgresql.org/gitweb?p=pgpool2.git;a=commitdiff;h=f81b8f198fde1f1ba1758d7e6f70eddb7b8bbf8e

Modified Files
--------------
src/query_cache/pool_memqcache.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)



More information about the pgpool-committers mailing list