Add batch mode, make new libpq section:
authorBruce Momjian
Wed, 16 Nov 2005 16:33:44 +0000 (16:33 +0000)
committerBruce Momjian
Wed, 16 Nov 2005 16:33:44 +0000 (16:33 +0000)
< * Add a libpq function to support Parse/DescribeStatement capability
< * Add PQescapeIdentifier() to libpq
< * 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
<
648a642,661
>
>
> libpq
>
>  o Add a function to support Parse/DescribeStatement capability
>  o Add PQescapeIdentifier()
>  o 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
>
>  o Allow query results to be automatically batched to the client
>
>    Currently, all query results are transfered to the libpq
>    client before libpq makes the results available to the
>    application.  This feature would allow the application to make
>    use of the first result rows while the rest are transfered, or
>    held on the server waiting for them to be requested by libpq.
>    One complexity is that a query like SELECT 1/col could error
>    out mid-way through the result set.

doc/TODO
doc/src/FAQ/TODO.html

index eb9d0b367920d7ca46400746589f292395910ecc..79748393528a388340b4bfacbf1eaccca2511007 100644 (file)
--- a/doc/TODO
+++ b/doc/TODO
@@ -2,7 +2,7 @@
 PostgreSQL TODO List
 ====================
 Current maintainer:    Bruce Momjian ([email protected])
-Last updated:      Tue Nov 15 18:08:23 EST 2005
+Last updated:      Wed Nov 16 11:33:25 EST 2005
 
 The most recent version of this document can be viewed at
 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -553,13 +553,6 @@ SQL Commands
 Clients
 =======
 
-* Add a libpq function to support Parse/DescribeStatement capability
-* Add PQescapeIdentifier() to libpq
-* 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
-
 * Have initdb set the input DateStyle (MDY or DMY) based on locale?
 * Have pg_ctl look at PGHOST in case it is a socket directory?
 * Allow pg_ctl to work properly with configuration files located outside
@@ -648,6 +641,26 @@ Clients
    o Add internationalized message strings
 
 
+libpq
+
+   o Add a function to support Parse/DescribeStatement capability
+   o Add PQescapeIdentifier()
+   o 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
+
+   o Allow query results to be automatically batched to the client
+
+     Currently, all query results are transfered to the libpq
+     client before libpq makes the results available to the 
+     application.  This feature would allow the application to make
+     use of the first result rows while the rest are transfered, or
+     held on the server waiting for them to be requested by libpq.
+     One complexity is that a query like SELECT 1/col could error
+     out mid-way through the result set.
+
+
 Referential Integrity
 =====================
 
index ccafeb52046af5d1c392c8274e98bb1fbf36dc66..fe0ad23c056a173229526586f5d1b52713857bdf 100644 (file)
@@ -8,7 +8,7 @@
 
 

PostgreSQL TODO List

 

Current maintainer:     Bruce Momjian ([email protected])

-Last updated:           Tue Nov 15 18:08:23 EST 2005
+Last updated:           Wed Nov 16 11:33:25 EST 2005
 

 

The most recent version of this document can be viewed at

 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -505,13 +505,7 @@ first.
 

Clients

 
 
    -  
  • Add a libpq function to support Parse/DescribeStatement capability
  • -  
  • Add PQescapeIdentifier() to libpq
  • -  
  • 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
    -

    -  
  • Have initdb set the input DateStyle (MDY or DMY) based on locale?
  • +  
  • Have initdb set the input DateStyle (MDY or DMY) based on locale?
  •    
  • Have pg_ctl look at PGHOST in case it is a socket directory?
  •    
  • Allow pg_ctl to work properly with configuration files located outside
  •    the PGDATA directory
    @@ -590,6 +584,25 @@ first.
         
  • Add internationalized message strings
  •    
     
    +

    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 query results to be automatically batched to the client
    • +

                Currently, all query results are transfered to the libpq

      +          client before libpq makes the results available to the 
      +          application.  This feature would allow the application to make
      +          use of the first result rows while the rest are transfered, or
      +          held on the server waiting for them to be requested by libpq.
      +          One complexity is that a query like SELECT 1/col could error
      +          out mid-way through the result set.
      +

      +
       

      Referential Integrity