error on pg_admin post_beta 3 (Nov 2 2004)

Поиск
Список
Период
Сортировка
От Riccardo G. Facchini
Тема error on pg_admin post_beta 3 (Nov 2 2004)
Дата
Msg-id 20041110125814.16468.qmail@web13925.mail.yahoo.com
обсуждение исходный текст
Ответы Re: error on pg_admin post_beta 3 (Nov 2 2004)  (Andreas Pflug <pgadmin@pse-consulting.de>)
Список pgadmin-support
Hi All,

small issue on the table generator:

the create sentence for a table that inherits from two other tables is
erroneous.

my example:

CREATE TABLE test1
(test1_id int4,test1_value text
);
CREATE TABLE test2
(test2_id int4,test2_value text
);
CREATE TABLE test3
(
) 
INHERITS (test1, test2)
WITHOUT OIDS;

should produce
CREATE TABLE test3
( test1_id int4, test1_value text, test2_id int4, test2_value text
) INHERITS (test1, test2) 
WITHOUT OIDS;

and makes:
CREATE TABLE test3
( test1_id int4, test1_value text, test2_id int4, test2_value text
) INHERITS (test1test2) 
WITH OIDS;



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

Предыдущее
От: Andreas Pflug
Дата:
Сообщение: Re: OS X compile error
Следующее
От: Andreas Pflug
Дата:
Сообщение: Re: error on pg_admin post_beta 3 (Nov 2 2004)