Re: BUG #3941: Insert Error

Поиск
Список
Период
Сортировка
От Zdenek Kotala
Тема Re: BUG #3941: Insert Error
Дата
Msg-id 47AC13D9.9070704@sun.com
обсуждение исходный текст
Ответ на BUG #3941: Insert Error  ("gnp yadav" <gnperumal@gmail.com>)
Список pgsql-bugs
gnp yadav wrote:
> The following bug has been logged online:
>
> Bug reference:      3941
> Logged by:          gnp yadav
> Email address:      gnperumal@gmail.com
> PostgreSQL version: 8.1
> Operating system:   Ubuntu Linux
> Description:        Insert Error
> Details:
>
> CREATE TABLE sentence
> (
>   sentence_id serial NOT NULL,
>   citation_id int8 NOT NULL,
>   sen_offset int8 NOT NULL,
>   sen_length int8 NOT NULL,
>   sen_type varchar(10)[] NOT NULL,
>   CONSTRAINT sentence_id PRIMARY KEY (sentence_id),
>   CONSTRAINT citation_id FOREIGN KEY (sentence_id)
>       REFERENCES citation (citation_id) MATCH SIMPLE
>       ON UPDATE NO ACTION ON DELETE NO ACTION
> ) ;
>
> INSERT INTO sentence (sentence_id, citation_id, sen_offset, sen_length,
> sen_type) VALUES (NULL,1,2,3,asd");

use ' instead of ".

INSERT INTO sentence (sentence_id, citation_id, sen_offset, sen_length,
sen_type) VALUES (NULL,1,2,3,'asd');

Please,  next time send this question to -general or -novice lists.
These lists are dedicated for this kind of question. -bug list is about
serious bug report.

    Zdenek

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

Предыдущее
От: "gnp yadav"
Дата:
Сообщение: BUG #3941: Insert Error
Следующее
От: Gary Doades
Дата:
Сообщение: Re: BUG #3941: Insert Error