From 7ad642d0b51fdb3a2fb4372f4b298d3f363b05ec Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Wed, 23 Aug 2006 18:32:02 +0000 Subject: [PATCH] Add "AS" item: < * All backends running as threads in a single process (not want) > * All backends running as threads in a single process (not wanted) < * Optimizer hints (not want) > * Optimizer hints (not wanted) > > * Allow AS in "SELECT col AS label" to be optional (not wanted) > > Because we support postfix operators, it isn't possible to make AS > optional and continue to use bison. > http://archives.postgresql.org/pgsql-sql/2006-08/msg00164.php --- doc/TODO | 12 +++++++++--- doc/src/FAQ/TODO.html | 11 ++++++++--- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/doc/TODO b/doc/TODO index d49cfa4a90f..7ae0b5fc971 100644 --- a/doc/TODO +++ b/doc/TODO @@ -2,7 +2,7 @@ PostgreSQL TODO List ==================== Current maintainer: Bruce Momjian (bruce@momjian.us) -Last updated: Tue Aug 22 22:48:03 EDT 2006 +Last updated: Wed Aug 23 14:31:52 EDT 2006 The most recent version of this document can be viewed at http://www.postgresql.org/docs/faqs.TODO.html. @@ -1431,18 +1431,24 @@ Source Code Features We Do _Not_ Want ========================= -* All backends running as threads in a single process (not want) +* All backends running as threads in a single process (not wanted) This eliminates the process protection we get from the current setup. Thread creation is usually the same overhead as process creation on modern systems, so it seems unwise to use a pure threaded model. -* Optimizer hints (not want) +* Optimizer hints (not wanted) Optimizer hints are used to work around problems in the optimizer. We would rather have the problems reported and fixed. http://archives.postgresql.org/pgsql-hackers/2006-08/msg00506.php +* Allow AS in "SELECT col AS label" to be optional (not wanted) + + Because we support postfix operators, it isn't possible to make AS + optional and continue to use bison. + http://archives.postgresql.org/pgsql-sql/2006-08/msg00164.php + --------------------------------------------------------------------------- diff --git a/doc/src/FAQ/TODO.html b/doc/src/FAQ/TODO.html index fc99ab38c9c..bb7932e5370 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: Tue Aug 22 22:48:03 EDT 2006 +Last updated: Wed Aug 23 14:31:52 EDT 2006

The most recent version of this document can be viewed at
http://www.postgresql.org/docs/faqs.TODO.html. @@ -1293,15 +1293,20 @@ first.

Features We Do _Not_ Want