Re: BUG #1370: Problem with arrays in PL/PGSQL - Mailing list pgsql-bugs

From Michael Fuhr
Subject Re: BUG #1370: Problem with arrays in PL/PGSQL
Date
Msg-id 20050103175635.GA58965@winnie.fuhr.org
Whole thread Raw
In response to BUG #1370: Problem with arrays in PL/PGSQL  ("David Bowen" <dmb0317@frontiernet.net>)
List pgsql-bugs
On Mon, Jan 03, 2005 at 03:11:05AM +0000, David Bowen wrote:

> test=# select crosstab(1);
> ERROR:  array value must start with "{" or dimension information
> CONTEXT:  PL/pgSQL function "crosstab" line 5 at block variables
> initialization
> $ cat /home1/dmb/crosstab
> CREATE OR REPLACE FUNCTION crosstab (integer) RETURNS integer[] AS '
> DECLARE
> contestant ALIAS FOR $1;
> row scores%ROWTYPE;
> s integer[3]:= (-1,-1,-1);

See "Array Value Input" in the "Arrays" section of the "Data Types"
chapter in the documentation; see also "Array Constructors" in the
"Value Expressions" section of the "SQL Syntax" chapter.  Either
of the following should work:

  s integer[3]:= ARRAY[-1,-1,-1];
  s integer[3]:= ''{-1,-1,-1}'';

Since you're running 8.0, consider using dollar quotes around the
function body if backward compatibility isn't necessary -- that way
you don't have to escape single quotes that are inside the function.
See "Dollar-Quoted String Constants" in the "SQL Syntax" chapter.

--
Michael Fuhr
http://www.fuhr.org/~mfuhr/

pgsql-bugs by date:

Previous
From: Tom Lane
Date:
Subject: Re: rule system re-evaluates expressions
Next
From: Bruce Momjian
Date:
Subject: Re: More SSL questions..