Ticket #160 (closed bug: fixed)

Opened 23 months ago

Last modified 23 months ago

column STATISTICS lost

Reported by: brsa Owned by: gleu
Priority: minor Milestone: 1.10.3
Component: pgadmin Version: 1.10
Keywords: browser Cc:
Platform: all

Description

The re-engineered SQL in the SQL pane of pgAdmin 1.10.2 misses out on column STATISTICS.

Demo:
~

-- I say --

CREATE TABLE test
( test_id integer PRIMARY KEY,

test text);

ALTER TABLE test ALTER COLUMN test SET STATISTICS 0;

-- pgAdmin says --

CREATE TABLE test
(

test_id integer NOT NULL,
test text,
CONSTRAINT test_pkey PRIMARY KEY (test_id)

)
WITH (

OIDS=FALSE

);

-- pd_dump would add:
-- ALTER TABLE ONLY test ALTER COLUMN test SET STATISTICS 0;

Attachments

ticket160_v1.patch Download (4.2 KB) - added by gleu 23 months ago.
v1 patch

Change History

Changed 23 months ago by brsa

  • summary changed from STATISTICS lost to column STATISTICS lost

Changed 23 months ago by gleu

v1 patch

Changed 23 months ago by gleu

  • status changed from new to assigned
  • owner changed from dpage to gleu
  • version changed from trunk to 1.10

Changed 23 months ago by gleu

  • keywords browser added
  • status changed from assigned to closed
  • resolution set to fixed
  • milestone set to 1.10.3

Fixed in r8250 and r8251.

Note: See TracTickets for help on using tickets.