ERROR: array_in: Need to specify dimension - Mailing list pgsql-general

From Charles Lewis
Subject ERROR: array_in: Need to specify dimension
Date
Msg-id 3EA7243E.1010900@delta.swau.edu
Whole thread Raw
Responses Re: ERROR: array_in: Need to specify dimension  (Dennis Gearon <gearond@cvc.net>)
Re: ERROR: array_in: Need to specify dimension  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
List pgsql-general
New to postgres and trying to create a simple table with a text
(variable length) column and getting the following error:

An error occured in pgAdminII:frmSQLOutput.cmdSave_Click:

Number: -2147467259
Description: ERROR: array_in: Need to specify dimension

Here's the schema:

-- Table: public.client
CREATE TABLE public.client (
  clientid int4 NOT NULL,
  name varchar(50),
  comment text[],
  CONSTRAINT client_pkey PRIMARY KEY (clientid)
) WITH OIDS;

Any suggestions?

Charles Lewis


pgsql-general by date:

Previous
From: Sean Chittenden
Date:
Subject: Re: pg_stat_get_backen_last_activity() ???
Next
From: Dennis Gearon
Date:
Subject: Re: ERROR: array_in: Need to specify dimension