Re: [INTERFACES] Re: [HACKERS] changes in 6.4

Поиск
Список
Период
Сортировка
От Hannu Krosing
Тема Re: [INTERFACES] Re: [HACKERS] changes in 6.4
Дата
Msg-id 35ADDC68.F13FACB0@trust.ee
обсуждение исходный текст
Ответ на Re: [HACKERS] atttypmod now 32 bits, interface change]  (Bruce Momjian <maillist@candle.pha.pa.us>)
Ответы Re: [INTERFACES] Re: [HACKERS] changes in 6.4  (dg@illustra.com (David Gould))
Список pgsql-hackers
Vadim Mikheev wrote:
>
> Hannu Krosing wrote:
> >
> > but functions still dont work:
> >
> > hannu=> create table test1 (a text, b text,
> > hannu-> check (trim(a) <> '' or trim(b) <> ''));
> > ERROR:  parser: parse error at or near "trim"
>
> TRIM is keyword, not a function...
> We have to copy some lines in gram.y

Wow! is this standard ?

I found the function trim by doing 'select oprname from pg_oper'
and tested it as follows:

hannu=> select trim('      x       ');
btrim
-----
x
(1 row)

why is the column called btrim ?
some rewrite magic in parser ?

If it must stay a keyword, then perhaps we should remove the proc ?

> Real functions are working...

yep! Thanks:

create table test2(a text,b text, check (btrim(a) <> '' or btrim(b) <>
''));

does work ;)

Hannu

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

Предыдущее
От: Aleksey Dashevsky
Дата:
Сообщение: Re: [INTERFACES] Re: [HACKERS] changes in 6.4
Следующее
От: "Thomas G. Lockhart"
Дата:
Сообщение: Re: [INTERFACES] Re: [HACKERS] changes in 6.4