Re: changing from postgreSQL 8.3 to 9.0

Поиск
Список
Период
Сортировка
От Albe Laurenz
Тема Re: changing from postgreSQL 8.3 to 9.0
Дата
Msg-id D960CB61B694CF459DCFB4B0128514C206E9F943@exadv11.host.magwien.gv.at
обсуждение исходный текст
Ответ на changing from postgreSQL 8.3 to 9.0  (Malm Paul <paul.malm@saabgroup.com>)
Список pgsql-general
Malm Paul wrote:
> I have a database created on ver 8.3 an have restored the database in
a new database in PostgreSQL
> 9.0.
> In the database i'm using a column storing "bytea".
>
> When trying to read the database with my java application, I have
problems reading from the bytea-
> stream.
> Integers read is not correct. I can see that there is something new in
ver 9.0: LC_COLLATE. Has that
> someting to do with my problem reading from "bytea".
> If so, what is the easiest way to get around this problem, when
importing the database that is created
> in PostgreSQL 8.3?

Collation or encoding matter only for textual data, not for binary data.

Did you update your JDBC driver to a version that supports 9.0?

With an old JDBS driver, you might have problems with the new
bytea encoding format in 9.0. You can test by setting
bytea_output to "escape" in postgresql.conf and see if that
works around the problem.

Yours,
Laurenz Albe

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

Предыдущее
От: Adam Tistler
Дата:
Сообщение: timeline X of the primary does not match recovery target timeline Y
Следующее
От: Gregg Jaskiewicz
Дата:
Сообщение: Re: bytea insert difference between 8.3 and 9.x