Bug #767: Bug when inserting in "bytea" column type

Поиск
Список
Период
Сортировка
От pgsql-bugs@postgresql.org
Тема Bug #767: Bug when inserting in "bytea" column type
Дата
Msg-id 20020914204136.F2EB8475E26@postgresql.org
обсуждение исходный текст
Ответы Re: Bug #767: Bug when inserting in "bytea" column type  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
Roman A.Grigorovich (atz@atz.msk.ru) reports a bug with a severity of 1
The lower the number the more severe it is.

Short Description
Bug when inserting in "bytea" column type

Long Description
PosgreSQL version 7.2.2
./configure --prefix=/usr/local/pgsql --enable-multibyte=WIN --cache-file=/dev/null

In "psql" command line tool:
CREATE TABLE IMAGES (ID SERIAL,NAME VARCHAR(32), DATA BYTEA);
and then i type.

INSERT INTO IMAGES (NAME,DATA) VALUES ('image1','\377\000\556\211\000');

after this i do next:
SELECT * FROM IMAGES;
and result of this query was:
ID     |   NAME     |   DATA
1          image1       \377

all data after '\000' have been missed. Is this a bug?
From PHP 4.0.6-client this work the same.



Sample Code


No file was uploaded with this report

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Bug #766: version difference creates problem
Следующее
От: Tom Lane
Дата:
Сообщение: Re: Bug #767: Bug when inserting in "bytea" column type