Re: Proposal for resolving casting issues

Поиск
Список
Период
Сортировка
От Zeugswetter Andreas SB SD
Тема Re: Proposal for resolving casting issues
Дата
Msg-id 46C15C39FEB2C44BA555E356FBCD6FA4961E89@m0114.s-mxs.net
обсуждение исходный текст
Ответ на Proposal for resolving casting issues  (Tom Lane <tgl@sss.pgh.pa.us>)
Ответы Re: Proposal for resolving casting issues  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
> I think there is some confusion here.  The runtime checks Andreas was
> talking about was allowing a double of 64.0 to cast to an int4 while
> disallowing 64.1 from being cast to an int4 because it is not a hole
> number.

Yes, and Tom's proposal for numbers is sufficient for constants, since the 64.0
will initially be an int2 and thus do the correct thing together with an int4,
and the 64.1 constant will be a numeric, and thus also do the correct thing with
all other types.

It is not sufficient for the optimizer for joins though, since it cannot use the
int4 index when confronted with "where tab1.int4col = tab2.numericcol".
Here only a runtime (non aborting) check would help.
Maybe this could be overcome if the index access (or something inbetween) would allow
a "numeric" constant for an int4 index (If the "numeric" value does not cleanly convert
to int4, return no rows).

Andreas


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

Предыдущее
От: "Dave Page"
Дата:
Сообщение: Re: PGXLOG variable worthwhile?
Следующее
От: "Dave Page"
Дата:
Сообщение: Re: PGXLOG variable worthwhile?