Re: Quoting of psql \d output

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Quoting of psql \d output
Дата
Msg-id 12610.1072548835@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Quoting of psql \d output  (Bruce Momjian <pgman@candle.pha.pa.us>)
Ответы Re: Quoting of psql \d output
Re: Quoting of psql \d output
Список pgsql-patches
Bruce Momjian <pgman@candle.pha.pa.us> writes:
> So it seems we can either go with no quotes, or smart quotes (which my
> patch implemented).   I feel my patch does the best of both worlds, by
> quoting as needed, and as the psql \d commands actually require anyway,
> and as used by pg_dump and in SQL queries.

You have not responded to Peter's point that quotes need translation.

If we adopt the viewpoint that this is an SQL representation of the
table name, and not a human-oriented one, then double quotes are correct
regardless of the language in use.  However, we agreed during
development of the message style guidelines that we would *not* use
strict SQL quoting in messages.  I have not seen a good reason given
to ignore that general policy in this particular case.

I think if we change it here we will also have to revisit hundreds of
places in the backend, such as this one:
    regression=# select * from public.bar;
    ERROR:  relation "public.bar" does not exist
and indeed the whole question of what we are using quotes for in
messages becomes open again.

At this point I think I'm voting with Peter, for no change at all.

            regards, tom lane

В списке pgsql-patches по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: Quoting of psql \d output
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: Quoting of psql \d output