Re: [BUGS] BUG #14877: DISCARD ALL incorrectly resets user parameters - Mailing list pgsql-bugs

From Fabrízio de Royes Mello
Subject Re: [BUGS] BUG #14877: DISCARD ALL incorrectly resets user parameters
Date
Msg-id CAFcNs+ra_gJW5iSNsUXR9t3DNS0R2noamqMFEbcNda93T7h-yg@mail.gmail.com
Whole thread Raw
In response to [BUGS] BUG #14877: DISCARD ALL incorrectly resets user parameters  (dmitriy@riabov.info)
Responses Re: [BUGS] BUG #14877: DISCARD ALL incorrectly resets user parameters  ("David G. Johnston" <david.g.johnston@gmail.com>)
List pgsql-bugs

On Fri, Oct 27, 2017 at 11:21 AM, <dmitriy@riabov.info> wrote:
>
> The following bug has been logged on the website:
>
> Bug reference:      14877
> Logged by:          Dmitriy Riabov
> Email address:      dmitriy@riabov.info
> PostgreSQL version: 10.0
> Operating system:   Debian 8
> Description:
>
> Affected versions: 9.4 - 10. Versions prior to 9.4 haven't been tested.
>
> How to reproduce the bug:
>
> # psql testdb
>
> testdb=# select current_setting('var.test');
> ERROR:  unrecognized configuration parameter "var.test"
> testdb=# select set_config('var.test', '123', false);
>  set_config
> ------------
>  123
> (1 row)
>
> testdb=# select current_setting('var.test');
>  current_setting
> -----------------
>  123
> (1 row)
>
> testdb=# discard all;
> DISCARD ALL
> testdb=# select current_setting('var.test');
>  current_setting
> -----------------
>
> (1 row)
>

Why do you think this wrong? This is the default behavior of DISCARD ALL since when 8.3 introduced it.

Regards,

--
Fabrízio de Royes Mello
Consultoria/Coaching PostgreSQL
>> Timbira: http://www.timbira.com.br
>> Blog: http://fabriziomello.github.io
>> Linkedin: http://br.linkedin.com/in/fabriziomello
>> Twitter: http://twitter.com/fabriziomello
>> Github: http://github.com/fabriziomello

pgsql-bugs by date:

Previous
From: dmitriy@riabov.info
Date:
Subject: [BUGS] BUG #14877: DISCARD ALL incorrectly resets user parameters
Next
From: "David G. Johnston"
Date:
Subject: Re: [BUGS] BUG #14877: DISCARD ALL incorrectly resets user parameters