Update of /project/pg/cvsroot/pg In directory common-lisp.net:/tmp/cvs-serv5381
Modified Files: CREDITS NEWS TODO Log Message: layout of documentation Date: Wed Aug 11 06:26:41 2004 Author: emarsden
Index: pg/CREDITS diff -u pg/CREDITS:1.2 pg/CREDITS:1.3 --- pg/CREDITS:1.2 Mon Mar 8 07:01:53 2004 +++ pg/CREDITS Wed Aug 11 06:26:41 2004 @@ -4,10 +4,28 @@ Peter Van Eynde: Wrote the support for the v3 PostgreSQL protocol.
+Marc Battyani: + Lispworks port and bugfixes + +Johannes Grødem johs@copyleft.no: + Fix to parsing of DATE types + +Doug McNaught: + Bugfixes + +Howard Ding: + Bugfixes + +Ernst Jeschek: + Pointed out a bug in float parsing + +Brian Lui: + Provided fixes for ACL6 + +James Anderson: + Provided a fix for a change in PostgreSQL timestamp format + +Brian Mastenbrook: + Implemented MD5 authentication support +
-Thanks to Marc Battyani for the LW port and for bugfixes, to Johannes -Grødem johs@copyleft.no for a fix to parsing of DATE types, to Doug -McNaught and Howard Ding for bugfixes, to Ernst Jeschek for pointing -out a bug in float parsing, to Brian Lui for providing fixes for ACL6, -to James Anderson for providing a fix for a change in PostgreSQL -timestamp format.
Index: pg/NEWS diff -u pg/NEWS:1.2 pg/NEWS:1.3 --- pg/NEWS:1.2 Mon Mar 8 07:01:53 2004 +++ pg/NEWS Wed Aug 11 06:26:41 2004 @@ -1,3 +1,4 @@ + === Version 0.21, 2003-xxxx ============================================
- added support for the v3 frontend/backend protocol, used by @@ -9,6 +10,10 @@ instead of PG-CONNECT.
- split out functionality into more files + + - added preliminary support for character encodings, for when the + encoding used by PostgreSQL for TEXT data differs from that used + by the Common Lisp implementation for strings.
=== Version 0.20 (unreleased) ==========================================
Index: pg/TODO diff -u pg/TODO:1.1 pg/TODO:1.2 --- pg/TODO:1.1 Fri Mar 5 10:08:08 2004 +++ pg/TODO Wed Aug 11 06:26:41 2004 @@ -1,8 +1,3 @@ - - update to protocol version 3, as per - http://developer.postgresql.org/docs/postgres/protocol-changes.html - esp with respect to error responses - - - SSL support
@@ -11,7 +6,22 @@ SERVE-EVENT support
+ - add support for the SQL bit string data type + CREATE TABLE test (a BUT(3), b BIT VARYING(5)) + INSERT INTO TEST VALUES (B'101', B'00'); + - in PG-CONNECT, use getaddrinfo_all() to try connecting to each possible address for a hostname
+ - the whole bind saga + + - maybe use CancelRequest to back out of error with grace? + + - we should return the oid of the object on inserts + + - use CopyData #\d methods + + - handle CopyInResponse and CopyOutResponse in pg-exec + + - use Describe