Re: [pgadmin-support] Bug: Little mistake in comment in inheriting table

2010-11-11 Thread Guillaume Lelarge
Le 11/11/2010 19:53, Vojtěch Látal a écrit : > Hi, > just a little thing: I wanted to try inheriting. So I made a table > "del" which inherits from table "vehicles". > > Create script follows: > -- Table: del > > -- DROP TABLE del; > > CREATE TABLE del > ( > -- Inherited from table del: id inte

[pgadmin-support] Bug: Little mistake in comment in inheriting table

2010-11-11 Thread Vojtěch Látal
Hi, just a little thing: I wanted to try inheriting. So I made a table "del" which inherits from table "vehicles". Create script follows: -- Table: del -- DROP TABLE del; CREATE TABLE del ( -- Inherited from table del: id integer NOT NULL DEFAULT nextval('vehicle_id_seq'::regclass), -- Inherite