From: Bruce Momjian Date: Wed, 26 Sep 2007 08:47:43 +0000 (+0000) Subject: Add: X-Git-Tag: REL8_3_BETA1~101 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=10e1b9df5c9cbd823c70ad397a7bd15ce460e0ac;p=postgresql Add: > * Implement Boyer-Moore searching in strpos() > > http://archives.postgresql.org/pgsql-patches/2007-08/msg00012.php --- diff --git a/doc/TODO b/doc/TODO index 8be1609e27..a92953c91a 100644 --- a/doc/TODO +++ b/doc/TODO @@ -1,7 +1,7 @@ PostgreSQL TODO List ==================== Current maintainer: Bruce Momjian (bruce@momjian.us) -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 diff --git a/doc/src/FAQ/TODO.html b/doc/src/FAQ/TODO.html index 2aec563e4c..ea98a83ef1 100644 --- a/doc/src/FAQ/TODO.html +++ b/doc/src/FAQ/TODO.html @@ -8,7 +8,7 @@

PostgreSQL TODO List

Current maintainer: Bruce Momjian (bruce@momjian.us)
-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