Bug report - multidimensional arrays - Mailing list pgadmin-support

From Joshua Boshi
Subject Bug report - multidimensional arrays
Date
Msg-id CAEv=SQcO4HuYnpks4-rbM51F-Eh4Ux46CV9fnNVvS8tiiOsOLw@mail.gmail.com
Whole thread Raw
Responses Re: Bug report - multidimensional arrays
List pgadmin-support
Hi,

I would like to report a bug on pgAdmin 1.16.1 installed on Ubuntu 13.04 from repository.
PgAdmin ignores multidimensional array types in it's outputs.

I defined a table using this command:

CREATE TABLE test (
id serial NOT NULL, 
test character varying(150)[][],
PRIMARY KEY (id)
) WITH (
  OIDS = FALSE
);

And when I selected the table in pgAdmin this was shown in the SQL pane:

-- Table: test

-- DROP TABLE test;

CREATE TABLE test
(
  id serial NOT NULL,
  test character varying(150)[],
  CONSTRAINT test_pkey PRIMARY KEY (id)
)
WITH (
  OIDS=FALSE
);
ALTER TABLE test
  OWNER TO joshua;


I don't know if this is a known issue, but it confused me for a moment.

Regards,
Josh


pgadmin-support by date:

Previous
From: "Ellinghaus, Lance"
Date:
Subject: Solaris version of PgAdmin
Next
From: Pieter du Plooy
Date:
Subject: PGAdmin 1.18.0 alpha compile