ERROR: array_in: Need to specify dimension

From: Charles Lewis <lewisc(at)delta(dot)swau(dot)edu>
To: pgsql-general(at)postgresql(dot)org
Subject: ERROR: array_in: Need to specify dimension
Date: 2003-04-23 23:39:42
Message-ID: 3EA7243E.1010900@delta.swau.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Sean Chittenden 2003-04-24 00:01:57 Re: pg_stat_get_backen_last_activity() ???
Previous Message Sean Chittenden 2003-04-23 23:20:23 Re: pg_stat_get_backen_last_activity() ???