Return-Path: pg_adm@postgres.berkeley.edu
Received: by postgres.Berkeley.EDU (5.61/1.29)
	id AA13595; Wed, 6 May 92 01:33:49 -0700
Date: Wed, 6 May 92 01:33:49 -0700
Message-Id: <9205060833.AA13595@postgres.Berkeley.EDU>
From: SEP Lutz <gesamic@pi.informatik.th-darmstadt.de>
Subject: Arrays
To: postgres@postgres.berkeley.edu
Sender: pg_adm@postgres.berkeley.edu

Here is another problem with arrays on SPARC, SUN OS 4.1.

Any attempt to replace a single item in an array failed.
The class structure is:

        create atest2(array=int4[8])

After appending

        append atest2(array="{1,2,3,4,5,6,7,8}")

the replace command

        replace atest2(array[1]=3)

failed. The error message is

        Query sent to backend is "replace atest2(array[1]=3)"
        WARN:May  6 10:02:10:parser: syntax error at or near "["

How do we get around this Problem?
