BUG #1293: INSERT INTO test (f1.f2) VALUES (1,2) - wrong diagnostic

Поиск
Список
Период
Сортировка
От PostgreSQL Bugs List
Тема BUG #1293: INSERT INTO test (f1.f2) VALUES (1,2) - wrong diagnostic
Дата
Msg-id 20041025022522.1526B5A1CBB@www.postgresql.com
обсуждение исходный текст
Ответы Re: BUG #1293: INSERT INTO test (f1.f2) VALUES (1,2) - wrong diagnostic  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-bugs
The following bug has been logged online:

Bug reference:      1293
Logged by:          Alexander Kirpa

Email address:      postgres@bilteks.com

PostgreSQL version: 8.0 Beta

Operating system:   FreeBSD

Description:        INSERT INTO test (f1.f2) VALUES (1,2) - wrong diagnostic

Details:

create table test(f1 int4,f2 int4);
insert into test (f1.f2) values (1,2);
ERROR:  cannot assign to a column of type integer because it is not a
composite type
select f1.f2 from test;
relation "f1" does not exist

Wrong diagnostic for INSERT

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

Предыдущее
От: "PostgreSQL Bugs List"
Дата:
Сообщение: BUG #1292: ecpg precompile bug (valiable typedef & define )
Следующее
От: Tom Lane
Дата:
Сообщение: Re: BUG #1293: INSERT INTO test (f1.f2) VALUES (1,2) - wrong diagnostic