]> granicus.if.org Git - postgresql/commit
Make local copy of client hostnames in backend status array.
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 11 Apr 2018 20:39:48 +0000 (23:39 +0300)
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>
Wed, 11 Apr 2018 20:39:48 +0000 (23:39 +0300)
commita820b4c32946c499a2d19846123840a0dad071b5
tree35d4028eba4cc8bcc70566ea1a958ed24ce7b7c0
parent72cf7f310c0729a331f321fad39835ac886603dc
Make local copy of client hostnames in backend status array.

The other strings, application_name and query string, were snapshotted to
local memory in pgstat_read_current_status(), but we forgot to do that for
client hostnames. As a result, the client hostname would appear to change in
the local copy, if the client disconnected.

Backpatch to all supported versions.

Author: Edmund Horner
Reviewed-by: Michael Paquier
Discussion: https://www.postgresql.org/message-id/CAMyN-kA7aOJzBmrYFdXcc7Z0NmW%2B5jBaf_m%3D_-77uRNyKC9r%3DA%40mail.gmail.com
src/backend/postmaster/pgstat.c