Re: help: now() + N is now failing!

Поиск
Список
Период
Сортировка
От Mendola Gaetano
Тема Re: help: now() + N is now failing!
Дата
Msg-id 011d01c35632$11c347f0$10d4a8c0@mm.eutelsat.org
обсуждение исходный текст
Ответ на help: now() + N is now failing!  ("Mel Jamero" <mel@gmanmi.tv>)
Список pgsql-novice
"Tom Lane" <tgl@sss.pgh.pa.us> wrote:


> One of the problems people have with using C++ that way is that the
> compiler tends to pick unexpected interpretations --- which is exactly
> the problem I'm complaining about for Postgres.  Ask anyone who's worked
> on large systems in C++, they'll have some horror stories to tell you...

I agree partialy with you, implicit cast save you a lot of work and people
that had horror stories are people that are not using the "explicit" keyword
in the constructor.
May be is a good idea to permit this kind of hint in the
function declaration for postgres:

create function foo( explicit timestamptz, int );

so either if the  cast text->timestamptz exist you can not
call

select foo( text, int ).




Regards
Gaetano Mendola



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

Предыдущее
От: Stephan Szabo
Дата:
Сообщение: Re: help: now() + N is now failing!
Следующее
От: Cath Lawrence
Дата:
Сообщение: designing tables for blobs - what are the guidelines?