Re: [HACKERS] What can we learn from MySQL?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [HACKERS] What can we learn from MySQL?
Дата
Msg-id 7305.1082779876@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: [HACKERS] What can we learn from MySQL?  (Stephan Szabo <sszabo@megazone.bigpanda.com>)
Ответы Re: [HACKERS] What can we learn from MySQL?  (Dennis Bjorklund <db@zigo.dhs.org>)
Re: [HACKERS] What can we learn from MySQL?  (Joe Conway <mail@joeconway.com>)
Do we prefer software that works or software that looks good?  (Shachar Shemesh <psql@shemesh.biz>)
Список pgsql-advocacy
Stephan Szabo <sszabo@megazone.bigpanda.com> writes:
> To clarify, I'm thinking about things where an application had gotten a
> quoted name and is now trying to use it where the object's canonical name
> was changed due to quoting changes. This only happens when quoting
> is inconsistently applied, but that's most of the problem.

Actually, that's *all* the problem, at least as far as SQL commands are
concerned.  If you are consistent about always quoting or never quoting
a particular name, you can't tell the difference between PG's behavior
and SQL-spec behavior.

Aside from the reality that apps aren't very consistent about their
quoting behavior, the fly in this ointment is that whenever you query
the database catalogs you will see the stored spelling of the name.
So apps that rely on seeing the same spelling in the catalog that they
entered could break.  (In practice this doesn't seem to be as big a
problem as the sloppy-quoting-behavior issue, though.)

Personally I don't think that this is a "transitional issue" and we will
someday all be happy in upper-case-only-land.  Upper-case-only sucks,
by every known measure of readability, and I don't want to have to put up
with a database that forces that 1960s-vintage-hardware mindset on me.
So what I'm holding out for is a design that lets me continue to see the
current behavior if I set a GUC variable that says that's what I want.
This seems possible (not easy, but possible) if we are willing to
require the choice to be made at compile time ... but that sounds too
restrictive to satisfy anybody ... what we need is a design that
supports such a choice per-session, and I dunno how to do that.

            regards, tom lane

PS: I resisted the temptation to SET THIS MESSAGE IN ALL UPPER CASE
to make the point about readability.  But if you want to argue the
point with me, I'll be happy to do that for the rest of the thread.

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

Предыдущее
От: Peter Eisentraut
Дата:
Сообщение: Re: What can we learn from MySQL?
Следующее
От: Dennis Bjorklund
Дата:
Сообщение: Re: [HACKERS] What can we learn from MySQL?