From 4763cddaf56bc96e0971e1d6b44505040332a920 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Fri, 19 May 2000 19:27:56 +0000 Subject: [PATCH] Update TODO list. --- doc/TODO.detail/array | 94 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 doc/TODO.detail/array diff --git a/doc/TODO.detail/array b/doc/TODO.detail/array new file mode 100644 index 0000000000..4b177e5fdc --- /dev/null +++ b/doc/TODO.detail/array @@ -0,0 +1,94 @@ +From owner-pgsql-hackers@hub.org Wed Nov 25 19:01:02 1998 +Received: from renoir.op.net (root@renoir.op.net [209.152.193.4]) + by candle.pha.pa.us (8.9.0/8.9.0) with ESMTP id TAA16399 + for ; Wed, 25 Nov 1998 19:01:01 -0500 (EST) +Received: from hub.org (majordom@hub.org [209.47.148.200]) by renoir.op.net (o1/$ Revision: 1.18 $) with ESMTP id SAA05250 for ; Wed, 25 Nov 1998 18:53:12 -0500 (EST) +Received: from localhost (majordom@localhost) + by hub.org (8.9.1/8.9.1) with SMTP id SAA17798; + Wed, 25 Nov 1998 18:49:38 -0500 (EST) + (envelope-from owner-pgsql-hackers@hub.org) +Received: by hub.org (TLB v0.10a (1.23 tibbs 1997/01/09 00:29:32)); Wed, 25 Nov 1998 18:49:07 +0000 (EST) +Received: (from majordom@localhost) + by hub.org (8.9.1/8.9.1) id SAA17697 + for pgsql-hackers-outgoing; Wed, 25 Nov 1998 18:49:06 -0500 (EST) + (envelope-from owner-pgsql-hackers@postgreSQL.org) +Received: from mail.enterprise.net (root@mail.enterprise.net [194.72.192.18]) + by hub.org (8.9.1/8.9.1) with ESMTP id SAA17650; + Wed, 25 Nov 1998 18:48:55 -0500 (EST) + (envelope-from olly@lfix.co.uk) +Received: from linda.lfix.co.uk (root@max01-040.enterprise.net [194.72.197.40]) + by mail.enterprise.net (8.8.5/8.8.5) with ESMTP id XAA20539; + Wed, 25 Nov 1998 23:48:52 GMT +Received: from linda.lfix.co.uk (olly@localhost [127.0.0.1]) + by linda.lfix.co.uk (8.9.1a/8.9.1/Debian/GNU) with ESMTP id XAA12089; + Wed, 25 Nov 1998 23:48:52 GMT +Message-Id: <199811252348.XAA12089@linda.lfix.co.uk> +X-Mailer: exmh version 2.0.2 2/24/98 (debian) +X-URL: http://www.lfix.co.uk/oliver +X-face: "xUFVDj+ZJtL_IbURmI}!~xAyPC"Mrk=MkAm&tPQnNq(FWxv49R}\>0oI8VM?O2VY+N7@F- + KMLl*!h}B)u@TW|B}6 +Sender: owner-pgsql-hackers@postgreSQL.org +Precedence: bulk +Status: ROr + +This was reported as a bug with the Debian package of 6.3.2; the same +behaviour is still present in 6.4. + +bray=> create table foo ( t text[]); +CREATE +bray=> insert into foo values ( '{"a"}'); +INSERT 201354 1 +bray=> insert into foo values ( '{"a","b"}'); +INSERT 201355 1 +bray=> insert into foo values ( '{"a","b","c"}'); +INSERT 201356 1 +bray=> select * from foo; +t +------------- +{"a"} +{"a","b"} +{"a","b","c"} +(3 rows) + +bray=> select t[1] from foo; +ERROR: type name lookup of t failed +bray=> select * from foo; +t +------------- +{"a"} +{"a","b"} +{"a","b","c"} +(3 rows) + +bray=> select foo.t[1] from foo; +t +- +a +a +a +(3 rows) + +bray=> select count(foo.t[1]) from foo; +pqReadData() -- backend closed the channel unexpectedly. + +-- +Oliver Elphick Oliver.Elphick@lfix.co.uk +Isle of Wight http://www.lfix.co.uk/oliver + PGP key from public servers; key ID 32B8FAA1 + ======================================== + "Let us therefore come boldly unto the throne of grace, + that we may obtain mercy, and find grace to help in + time of need." Hebrews 4:16 + + + +