Re: new type question

Поиск
Список
Период
Сортировка
От Jim C. Nasby
Тема Re: new type question
Дата
Msg-id 20051017175135.GA86144@pervasive.com
обсуждение исходный текст
Ответ на new type question  ("Sim Zacks" <sim@compulab.co.il>)
Список pgsql-general
On Sun, Oct 16, 2005 at 11:03:52AM +0200, Sim Zacks wrote:
> create function uint_in(val cstring) returns uint2 as
> $$
> declare thisval int4;
> begin
>  thisval=val::int4
>  if thisval between 0 and 65535 then
>   return (thisval-32768)::int2;
>  else
>   return 0;
>  end if;
> end
> $$ language 'plpgsql';

On a side note, do you really want to punt to 0 when an invalid value
comes it? That sounds like something MySQL would do... ISTM you should
throw an error.

Also, you could have written that as a pure SQL function, which would
have been faster (assuming you could use something other than C for
this).
--
Jim C. Nasby, Sr. Engineering Consultant      jnasby@pervasive.com
Pervasive Software      http://pervasive.com    work: 512-231-6117
vcard: http://jim.nasby.net/pervasive.vcf       cell: 512-569-9461

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

Предыдущее
От: Simon Riggs
Дата:
Сообщение: Re: [pgsql-advocacy] Oracle buys Innobase
Следующее
От: Chris Browne
Дата:
Сообщение: Re: [pgsql-advocacy] Oracle buys Innobase