Обсуждение: [pgAdmin III] #277: Little mistake in comment in inheriting table

Поиск
Список
Период
Сортировка

[pgAdmin III] #277: Little mistake in comment in inheriting table

От
"pgAdmin Trac"
Дата:
#277: Little mistake in comment in inheriting table
---------------------------+------------------------------------------------
 Reporter:  Vojtěch Látal  |       Owner:  gleu
     Type:  bug            |      Status:  new 
 Priority:  minor          |   Milestone:      
Component:  pgadmin        |     Version:  1.12
 Keywords:  table          |    Platform:  all 
---------------------------+------------------------------------------------
 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),
 -- Inherited from table del:  vin character varying(20) NOT NULL,
 -- Inherited from table del:  licence_plate character varying(12) NOT
 NULL,
  a boolean
 )
 INHERITS (vehicles)
 WITH (
  OIDS=FALSE
 );
 ALTER TABLE del OWNER TO gary;


 It seems it should be "-- Inherited from table vehicles:" instead of
 current "-- Inherited from table del:".

 Version: 1.12.1 from Community repo
 OS: ArchLinux, kernel 2.6.35
 PostgreSQL: 9.0.1

 Steps to reproduce:
 1) (create database,) create table, put some columns into.
 2) create another table from contextual menu, select "New Table..."
 3) "New Table..." dialog opens, put some table name in, open "Inherits"
 tab
 4) select table you created in 1), click Add
 5) select "Columns" tab, add some column
 6) create table by clicking "OK"
 7) select newly created table from step 6) and in SQL pane you'll see what
 I've included.

 Thanks guys for huge piece of good work. I really appreciate what you are
 doing.

--
Ticket URL: <http://code.pgadmin.org/trac/ticket/277>
pgAdmin III <http://code.pgadmin.org/trac/>
pgAdmin III

Re: [pgAdmin III] #277: Little mistake in comment in inheriting table

От
"pgAdmin Trac"
Дата:
#277: Little mistake in comment in inheriting table
----------------------------+-----------------------------------------------
  Reporter:  Vojtěch Látal  |       Owner:  gleu  
      Type:  bug            |      Status:  closed
  Priority:  minor          |   Milestone:  1.12.2
 Component:  pgadmin        |     Version:  1.12  
Resolution:  fixed          |    Keywords:  table 
  Platform:  all            |  
----------------------------+-----------------------------------------------
Changes (by gleu):

  * status:  new => closed
  * resolution:  => fixed
  * milestone:  => 1.12.2


Comment:

 Fixed in
 http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commit;h=96ac26714616ec393f45e8cf3980110b76a29e92
 and
 http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commit;h=16961db60b8dd28249982504618d93853242917b.

--
Ticket URL: <http://code.pgadmin.org/trac/ticket/277#comment:1>
pgAdmin III <http://code.pgadmin.org/trac/>
pgAdmin III