Update TODO list.
authorBruce Momjian
Fri, 19 May 2000 19:27:56 +0000 (19:27 +0000)
committerBruce Momjian
Fri, 19 May 2000 19:27:56 +0000 (19:27 +0000)
doc/TODO.detail/array [new file with mode: 0644]

diff --git a/doc/TODO.detail/array b/doc/TODO.detail/array
new file mode 100644 (file)
index 0000000..4b177e5
--- /dev/null
@@ -0,0 +1,94 @@
+From [email protected] Wed Nov 25 19:01:02 1998
+Received: from renoir.op.net ([email protected] [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 ([email protected] [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 [email protected])
+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 [email protected])
+Received: from mail.enterprise.net ([email protected] [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 [email protected])
+Received: from linda.lfix.co.uk ([email protected] [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: <[email protected]>
+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
+   _+=`K$5TI|4I0-=Cp%pt~L#QYydO'iBXR~\tT?uftep9n9AF`@SzTwsw6uqJ}pL,h(cZi}T#PB"#!k
+   p^e=Z.K~fuw$l?]lUV)?R]U}l;f*~Ol)#fpKR)Yt}XOr6BI\_Jjr0!@GMnpCTnTym4f;c{;Ms=0{`D
+   Lq9MO6{wj%s-*N"G,g
+Subject: [HACKERS] Failures with arrays
+Mime-Version: 1.0
+Content-Type: text/plain; charset=us-ascii
+Date: Wed, 25 Nov 1998 23:48:51 +0000
+From: "Oliver Elphick" 
+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                                [email protected]
+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 
+
+
+
+