Re: BUG #6152: possibly wrong display of pg_settings.enumvals for default_transaction_isolation

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Christoph Anton Mitterer" <calestyo(at)scientia(dot)net>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: BUG #6152: possibly wrong display of pg_settings.enumvals for default_transaction_isolation
Date: 2011-08-05 21:21:28
Message-ID: 8475.1312579288@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

"Christoph Anton Mitterer" <calestyo(at)scientia(dot)net> writes:
> $ psql -c 'SELECT name,vartype,enumvals FROM pg_settings;' | grep
> default_transaction_isolation
> default_transaction_isolation | enum | {serializable,"repeatable
> read","read committed","read uncommitted"}

That output looks correct to me. The column is an array column, and
double quotes are needed to protect the whitespace embedded in the last
three array elements. (Strictly speaking they could perhaps be omitted,
but the array output function is a bit conservative here --- any
whitespace causes it to include quotes.)

> Using e.g.:
> default_transaction_isolation = "read committed"
> does not work however. It only works in single quotes.

Yeah, the configuration file parser only allows single quotes.
I suppose we could let it accept double quotes too, but I'd be worried
about foreclosing future expansion. The two kinds of quotes mean
entirely different things in SQL commands.

regards, tom lane

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Christoph Anton Mitterer 2011-08-05 21:23:35 Re: BUG #6152: possibly wrong display of pg_settings.enumvals for default_transaction_isolation
Previous Message Christoph Anton Mitterer 2011-08-05 20:54:42 BUG #6152: possibly wrong display of pg_settings.enumvals for default_transaction_isolation