Re: Variadic polymorpic functions

Поиск
Список
Период
Сортировка
От Vincenzo Romano
Тема Re: Variadic polymorpic functions
Дата
Msg-id 3eff28921001270749x67e02cc5j8175efedee128a09@mail.gmail.com
обсуждение исходный текст
Ответ на Re: Variadic polymorpic functions  (Pavel Stehule <pavel.stehule@gmail.com>)
Ответы Re: Variadic polymorpic functions  (Pavel Stehule <pavel.stehule@gmail.com>)
Re: Variadic polymorpic functions  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
2010/1/27 Pavel Stehule <pavel.stehule@gmail.com>:
> Hello
>
> I add sprintf function. Now I think, we can add new contrib module
> (string functions) with both function - format and sprintf. These
> functions are relative different, so they can exists separately.
> Format is simpler and faster. Sprintf is more powerful but slower.
>
> postgres=# select pst.format('now is %', current_time);
>          format
> ---------------------------
>  now is 16:34:26.203728+01
> (1 row)
>
> postgres=# select pst.sprintf('now is %s', current_time);
>         sprintf
> --------------------------
>  now is 16:34:45.24919+01
>
> Regards
> Pavel Stehule

Yeah!

But why still on  separate schema?
I'd rather put them all in the public one, so you don't need the "pst." anymore.
Just like (most of) all other contrib mudules ...

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

Предыдущее
От: "Igor Neyman"
Дата:
Сообщение: relation between records in "main" and "toast" tables
Следующее
От: Pavel Stehule
Дата:
Сообщение: Re: Variadic polymorpic functions