what is wrong with data type 'array' ?

From: "Jack Dull" <jack_dull(at)sina(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: what is wrong with data type 'array' ?
Date: 2003-04-11 01:33:02
Message-ID: b7561q$2qfh$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

hi, all: When I tried the example from PostgreSQL guide as follows:CREATE
TABLE sal_emp (
name text,
pay_by_quarter integer[],
schedule text[][]
); To my surprised, the table created actually isCREATE TABLE sal_emp (
name text,
pay_by_quarter integer[],
schedule text[]
); I was wondering if PostgreSQL really supports multidimensional array
with more than tow dimensions? jack_dull

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Brad Paul 2003-04-11 01:41:14 pg_dump: NOTICE: ShmemAlloc: out of memory
Previous Message Peter Eisentraut 2003-04-11 01:20:09 Re: OS/X and PL/PGSQL