Re: Pb with arrays in PostgresQL

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Pb with arrays in PostgresQL
Дата
Msg-id 19406.971194329@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Pb with arrays in PostgresQL  (Pascale Thomas <p.thomas@smie.com>)
Список pgsql-bugs
Pascale Thomas <p.thomas@smie.com> writes:
>     "select  nom_soc from societe where event_ok[1]=1"
> The error message is : Unable to locate type name 'event_ok' in catalog

In 6.5.* this only works if you write out the fully qualified name:
    select  nom_soc from societe where societe.event_ok[1]=1

I'd strongly recommend updating to Postgres 7.0.2, because this is not
the only array-related bug you will find in 6.5 ...

            regards, tom lane

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

Предыдущее
От: Pascale Thomas
Дата:
Сообщение: Pb with arrays in PostgresQL
Следующее
От: Stephan Szabo
Дата:
Сообщение: Re: Referencial integrity when there are timestamp primary keys