Re: Syntax problem with INDEX on expression

Поиск
Список
Период
Сортировка
От Kevin Grittner
Тема Re: Syntax problem with INDEX on expression
Дата
Msg-id 1365196710.77872.YahooMailNeo@web162902.mail.bf1.yahoo.com
обсуждение исходный текст
Ответ на Syntax problem with INDEX on expression  (Mike Blackwell <mike.blackwell@rrd.com>)
Ответы Re: Syntax problem with INDEX on expression
Список pgsql-general
Mike Blackwell <mike.blackwell@rrd.com> wrote:

> sp_dev=# create index test_idx on test
((xpath('//rms:xsid/text()',udh,array[array['rms','http://www.example.com']]))[1]::text);
> ERROR:  syntax error at or near "["
> LINE 1: ...udh,array[array['rms','http://www.example.com']]))[1]::text)...
>                                                              ^
> It looks like it doesn't like the array subscript.  What might I be missing?

You're missing a set of parentheses around the entire expression.

create index test_idx on test
(((xpath('//rms:xsid/text()',udh,array[array['rms','http://www.example.com']]))[1]::text));

--
Kevin Grittner
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


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

Предыдущее
От: Mike Blackwell
Дата:
Сообщение: Syntax problem with INDEX on expression
Следующее
От: Mike Blackwell
Дата:
Сообщение: Re: Syntax problem with INDEX on expression