Re: Implementing DB2's "distinct" types

Поиск
Список
Период
Сортировка
От Simon Riggs
Тема Re: Implementing DB2's "distinct" types
Дата
Msg-id CA+U5nMKNh1zO9Ns2MFSiSiKV69HzRM+r-w6snej2KMnHWzEjGw@mail.gmail.com
обсуждение исходный текст
Ответ на Implementing DB2's "distinct" types  (Thomas Kellerer <spam_eater@gmx.net>)
Ответы Re: Implementing DB2's "distinct" types
Список pgsql-general
On 21 April 2013 12:17, Thomas Kellerer <spam_eater@gmx.net> wrote:

> DB2 lets you define your own types (just as Postgres) but with the added
> benefit that you can mark them such that they are _not_ comparable, e.g. to
> avoid comparing "apples to oranges".

Sounds like an interesting feature we might want, but you should
discuss it on hackers.

What does the SQL standard say about this?

Is this actually useful for anything? I don't remember any complaints
about the current behaviour.

> As a type definition in Postgres can also include comparison functions, I
> have the feeling that this should be possible, but I don't have an idea on
> how to start to be honest.

Postgres supports both domains and row types. So you can treat this as
a row type with just one attribute.

Look at make_row_comparison_op() in src/backend/parser/parse_expr.c

If you can work out where to put it, you'd just need an if test to
prevent the row comparison recursing into its component types. That
would be stored on the pg_type catalog table as a boolean attribute,
defaulting to current behaviour.

--
 Simon Riggs                   http://www.2ndQuadrant.com/
 PostgreSQL Development, 24x7 Support, Training & Services


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

Предыдущее
От: Martín Marqués
Дата:
Сообщение: Re: apt.postgresql.org broken dependency?
Следующее
От: CR Lender
Дата:
Сообщение: Re: Checking for changes in other tables