| From: | Dorian Hoxha <dorian(dot)hoxha(at)gmail(dot)com> |
|---|---|
| To: | pgadmin-support(at)postgresql(dot)org |
| Subject: | Crash when working with complex composite_types |
| Date: | 2014-04-29 16:36:20 |
| Message-ID: | CANsFX04LoMthJ=Zk7wp_EqmwBFi0_i1oPFLJ6zov951npr0nrA@mail.gmail.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgadmin-support |
PgAdmin: 1.18.1
Postgresql: 9.3.1 32bit
Os: Windows 7 64bit (tried on 2 computers with same configuration)
Create a new database and then paste:
CREATE TYPE minithumb AS
(x smallint,
y smallint,
url text);
ALTER TYPE minithumb
OWNER TO root;
CREATE TYPE thumbnail AS
(width smallint,
height smallint,
seconds numeric[],
frames integer[],
"interval" smallint,
"number" smallint,
title text,
format smallint);
ALTER TYPE thumbnail
OWNER TO root;
CREATE TYPE watermark AS
(url text,
x smallint,
y smallint,
width smallint,
height smallint,
opacity smallint);
ALTER TYPE watermark
OWNER TO root;
CREATE TYPE output AS
(width smallint,
height smallint,
minithumbs minithumb[],
watermarks watermark[],
thumbnails thumbnail[],
start_time smallint,
end_time smallint,
title text,
min_width smallint,
min_height smallint);
ALTER TYPE output
OWNER TO root;
Now go to output type, right click properties, crash.
| From | Date | Subject | |
|---|---|---|---|
| Next Message | espeake | 2014-04-29 19:27:13 | Use of uninitialized value $info{"pgdata"} in concatenation (.) or string at /usr/bin/pg_ctlcluster |
| Previous Message | Eduard Szöcs | 2014-04-29 11:54:54 | Materialized views in pgadmin |