Add:
authorBruce Momjian
Wed, 26 Sep 2007 08:47:43 +0000 (08:47 +0000)
committerBruce Momjian
Wed, 26 Sep 2007 08:47:43 +0000 (08:47 +0000)
> * Implement Boyer-Moore searching in strpos()
>
>   http://archives.postgresql.org/pgsql-patches/2007-08/msg00012.php

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

index 8be1609e274bda7c67d3dcf3d7af1234da240128..a92953c91aea1daae13424eadcbbd5e4a336ecca 100644 (file)
--- a/doc/TODO
+++ b/doc/TODO
@@ -1,7 +1,7 @@
 PostgreSQL TODO List
 ====================
 Current maintainer:    Bruce Momjian ([email protected])
-Last updated:      Thu Sep 20 14:53:32 EDT 2007
+Last updated:      Wed Sep 26 04:47:39 EDT 2007
 
 The most recent version of this document can be viewed at
 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -396,6 +396,9 @@ Functions
   Some geometric types do not have the full suite of geometric operators,
   e.g. box @> point
 
+* Implement Boyer-Moore searching in strpos()
+
+  http://archives.postgresql.org/pgsql-patches/2007-08/msg00012.php
 
 
 
index 2aec563e4c4b8ec9186a466dcfd9a1684b994fa5..ea98a83ef176d7d4f1880f068be517b5c1a07df3 100644 (file)
@@ -8,7 +8,7 @@
 
 

PostgreSQL TODO List

 

Current maintainer:     Bruce Momjian ([email protected])

-Last updated:           Thu Sep 20 14:53:32 EDT 2007
+Last updated:           Wed Sep 26 04:47:39 EDT 2007
 

 

The most recent version of this document can be viewed at

 http://www.postgresql.org/docs/faqs.TODO.html.
@@ -356,6 +356,9 @@ first.  There is also a developer's wiki at
   
  • Add missing operators for geometric data types
  •  

      Some geometric types do not have the full suite of geometric operators,

       e.g. box @> point
    +

    +  
  • Implement Boyer-Moore searching in strpos()
  • +

      http://archives.postgresql.org/pgsql-patches/2007-08/msg00012.php

     

     
     

    Multi-Language Support