error on pg_admin post_beta 3 (Nov 2 2004) - Mailing list pgadmin-support

From Riccardo G. Facchini
Subject error on pg_admin post_beta 3 (Nov 2 2004)
Date
Msg-id 20041110125814.16468.qmail@web13925.mail.yahoo.com
Whole thread Raw
Responses Re: error on pg_admin post_beta 3 (Nov 2 2004)  (Andreas Pflug <pgadmin@pse-consulting.de>)
List 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 by date:

Previous
From: Andreas Pflug
Date:
Subject: Re: OS X compile error
Next
From: Andreas Pflug
Date:
Subject: Re: error on pg_admin post_beta 3 (Nov 2 2004)