Re: BUG #14017: strange syntax error

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: BUG #14017: strange syntax error
Дата
Msg-id 13687.1457798629@sss.pgh.pa.us
обсуждение исходный текст
Ответ на BUG #14017: strange syntax error  (anthony@arkia.nl)
Список pgsql-bugs
anthony@arkia.nl writes:
> When running the create or replace function on the following I get this
> error

> ERROR:  syntax error at or near "("
> LINE 5: ...trim(isnull(new.straat,''::text) || ' ' || isnull (  new.hui...

ISNULL is a keyword; it's a short form of IS NULL.  It's only by pure
chance that you've ever been able to use this function:

> CREATE OR REPLACE FUNCTION public."isnull"(

without double-quoting its name everywhere.  The fact that it accidentally
worked in this context before 9.5, but fails now, probably has something
to do with the changes we made in 9.5 to give IS NULL the syntactic
precedence required by the SQL standard.

You could rename the function to something that doesn't conflict, like
"is_null".  But really my recommendation is to drop it entirely and use
COALESCE(), which does the same thing, is considerably more efficient,
and is SQL-standard.

            regards, tom lane

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

Предыдущее
От: anthony@arkia.nl
Дата:
Сообщение: BUG #14017: strange syntax error
Следующее
От: Brian Ghidinelli
Дата:
Сообщение: Re: BUG #13970: Vacuum hangs on particular table; cannot be terminated - requires `kill -QUIT pid`