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

Vadim Mikheev <vadim@krs.ru>

From: Vadim Mikheev <vadim@krs.ru>
To: Hannu Krosing <hannu@trust.ee>
Cc: pgsql-interfaces@postgreSQL.org, hackers@postgreSQL.org
Date: 1998-07-16T08:51:35Z
Lists: pgsql-hackers
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

Real functions are working...

Vadim