Re: pgsql: Add infrastructure to save and restore GUC values.

From: Heikki Linnakangas <hlinnakangas(at)vmware(dot)com>
To: Robert Haas <rhaas(at)postgresql(dot)org>, <pgsql-committers(at)postgresql(dot)org>
Subject: Re: pgsql: Add infrastructure to save and restore GUC values.
Date: 2014-11-25 13:32:57
Message-ID: 54748509.8060109@vmware.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

On 11/25/2014 12:17 AM, Robert Haas wrote:
> Add infrastructure to save and restore GUC values.
>
> This is further infrastructure for parallelism.
>
> Amit Khandekar, Noah Misch, Robert Haas

guc.c: In function ‘EstimateGUCStateSpace’:
guc.c:8506:7: warning: ‘valsize’ may be used uninitialized in this
function [-Wmaybe-uninitialized]
Size valsize;
^
guc.c: In function ‘SerializeGUCState’:
guc.c:8762:56: warning: ‘i_role’ may be used uninitialized in this
function [-Wmaybe-uninitialized]
serialize_variable(&curptr, &bytes_left, guc_variables[i_role]);
^
- Heikki

In response to

Responses

Browse pgsql-committers by date

  From Date Subject
Next Message Stephen Frost 2014-11-25 15:05:05 pgsql: Suppress DROP CASCADE notices in regression tests
Previous Message Heikki Linnakangas 2014-11-25 13:21:40 pgsql: Check return value of strdup() in libpq connection option parsin