Re: Warts with SELECT DISTINCT

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Warts with SELECT DISTINCT
Дата
Msg-id 19612.1146724773@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Warts with SELECT DISTINCT  (Bruno Wolff III <bruno@wolff.to>)
Ответы Re: Warts with SELECT DISTINCT
Список pgsql-hackers
Bruno Wolff III <bruno@wolff.to> writes:
> ... it would be OK to rewrite
> SELECT DISTINCT x ORDER BY foo(x)
> as
> SELECT DISTINCT ON (foo(x), x) x ORDER BY foo(x)

This assumes that x = y implies foo(x) = foo(y), which is something
that's not necessarily the case, mainly because a datatype's "="
function need not have a lot to do with the behavior of arbitrary
functions foo(), especially if foo() yields a different datatype.
The citext datatype is an easy counterexample: it thinks "foo" = "Foo",
but md5() of those values will not yield the same answers.

The bottom line here is that this sort of deduction requires more
understanding of the properties of datatypes and functions than
our existing catalogs allow the planner to obtain.
        regards, tom lane


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

Предыдущее
От: Bruno Wolff III
Дата:
Сообщение: Re: Warts with SELECT DISTINCT
Следующее
От: "fernando esparza"
Дата:
Сообщение: Revised R* tree using GiST