Bug report - multidimensional arrays

From: Joshua Boshi <joshuaboshi(at)gmail(dot)com>
To: pgadmin-support(at)postgresql(dot)org
Subject: Bug report - multidimensional arrays
Date: 2013-05-31 17:36:47
Message-ID: CAEv=SQcO4HuYnpks4-rbM51F-Eh4Ux46CV9fnNVvS8tiiOsOLw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

Responses

Browse pgadmin-support by date

  From Date Subject
Next Message Pieter du Plooy 2013-05-31 17:47:11 PGAdmin 1.18.0 alpha compile
Previous Message Ellinghaus, Lance 2013-05-30 14:46:00 Solaris version of PgAdmin