Re: Range types

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Range types
Дата
Msg-id 12399.1260818618@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Range types  (Jeff Davis <pgsql@j-davis.com>)
Ответы Re: Range types  (Robert Haas <robertmhaas@gmail.com>)
Re: Range types  (Jeff Davis <pgsql@j-davis.com>)
Re: Range types  (Andrew Dunstan <andrew@dunslane.net>)
Список pgsql-hackers
Jeff Davis <pgsql@j-davis.com> writes:
> On Mon, 2009-12-14 at 13:32 -0500, Tom Lane wrote:
>> The main question I would have is how to tell whether the underlying
>> type is really discrete.

> We can ask the user to provide a prior() and next() function, and if
> they aren't provided, we assume it's continuous.

Well, that still leaves us with the problem that Joe Schmo will file
a bug when "create function next(float4) returns float4 as
$$ select $1 + 0.00001 $$" doesn't behave sanely for him.  I'd prefer
not to leave it to the user to decide whether a type is discrete or
not.  The traffic on pgsql-bugs is convincing evidence that a very
large fraction of our user-base doesn't understand that floats are
inexact :-(

> I think "countable" is a more accurate word than "discrete". Strings are
> discrete but not countable.

It's been too long since college math classes for me to be sure whether
"discrete" is really the exact term here.  But I'm even more suspicious
of "countable".  I think a suitable diagonalization argument might show
that strings are countable.  That's getting a bit off-topic though...
        regards, tom lane


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

Предыдущее
От: Simon Riggs
Дата:
Сообщение: Re: Hot Standby, release candidate?
Следующее
От: Jeff Davis
Дата:
Сообщение: Re: Range types