PostgreSQL TODO List
====================
-Last updated: Mon Mar 6 10:13:39 EST 2006
+Last updated: Mon Mar 6 10:19:42 EST 2006
The most recent version of this document can be viewed at
http://www.postgresql.org/docs/faqs.TODO.html.
o Add COPY TO STDIN / STDOUT handling
-libpq
+* libpq
o Add a function to support Parse/DescribeStatement capability
o Add PQescapeIdentifier()
code from the LibGW32C project as a guide.
o Port contrib/xml2
+ o Check WSACancelBlockingCall() for interrupts (win32intr)
+
* Wire Protocol Changes
-Last updated: Mon Mar 6 10:13:39 EST 2006
+Last updated: Mon Mar 6 10:19:42 EST 2006
The most recent version of this document can be viewed at
Add internationalized message strings
Add COPY TO STDIN / STDOUT handling
-
-
-
Add a function to support Parse/DescribeStatement capability
-
Add PQescapeIdentifier()
-
Prevent PQfnumber() from lowercasing unquoted the column name
+
libpq
+
Add a function to support Parse/DescribeStatement capability
+
Add PQescapeIdentifier()
+
Prevent PQfnumber() from lowercasing unquoted the column name
PQfnumber() should never have been doing lowercasing, but
historically it has so we need a way to prevent it
-
Allow statement results to be automatically batched to the client
+
Allow statement results to be automatically batched to the client
Currently, all statement results are transferred to the libpq
client before libpq makes the results available to the
application. This feature would allow the application to make
One complexity is that a statement like SELECT 1/col could error
out mid-way through the result set.
+
code from the LibGW32C project as a guide.
Port contrib/xml2
+
Check WSACancelBlockingCall() for interrupts (win32intr)
Wire Protocol Changes