aboutsummaryrefslogtreecommitdiff
path: root/doc/src/FAQ/TODO.html
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2006-08-23 18:32:02 +0000
committerBruce Momjian <bruce@momjian.us>2006-08-23 18:32:02 +0000
commit7ad642d0b51fdb3a2fb4372f4b298d3f363b05ec (patch)
tree63f4e030e3962f47a7bfcd5d2d38cce2cd114a0f /doc/src/FAQ/TODO.html
parenta6558b068d7c3047348f1860e6e455e8801c4ac5 (diff)
downloadpostgresql-7ad642d0b51fdb3a2fb4372f4b298d3f363b05ec.tar.gz
postgresql-7ad642d0b51fdb3a2fb4372f4b298d3f363b05ec.zip
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
Diffstat (limited to 'doc/src/FAQ/TODO.html')
-rw-r--r--doc/src/FAQ/TODO.html11
1 files changed, 8 insertions, 3 deletions
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 @@
<body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF">
<h1><a name="section_1">PostgreSQL TODO List</a></h1>
<p>Current maintainer: Bruce Momjian (<a href="mailto:bruce@momjian.us">bruce@momjian.us</a>)<br/>
-Last updated: Tue Aug 22 22:48:03 EDT 2006
+Last updated: Wed Aug 23 14:31:52 EDT 2006
</p>
<p>The most recent version of this document can be viewed at<br/>
<a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>.
@@ -1293,16 +1293,21 @@ first.
<h1><a name="section_23">Features We Do _Not_ Want</a></h1>
<ul>
- <li>All backends running as threads in a single process (not want)
+ <li>All backends running as threads in a single process (not wanted)
<p> 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.
</p>
- </li><li>Optimizer hints (not want)
+ </li><li>Optimizer hints (not wanted)
<p> Optimizer hints are used to work around problems in the optimizer. We
would rather have the problems reported and fixed.
<a href="http://archives.postgresql.org/pgsql-hackers/2006-08/msg00506.php">http://archives.postgresql.org/pgsql-hackers/2006-08/msg00506.php</a>
</p>
+ </li><li>Allow AS in "SELECT col AS label" to be optional (not wanted)
+<p> Because we support postfix operators, it isn't possible to make AS
+ optional and continue to use bison.
+ <a href="http://archives.postgresql.org/pgsql-sql/2006-08/msg00164.php">http://archives.postgresql.org/pgsql-sql/2006-08/msg00164.php</a>
+</p>
</li></ul>
<hr/>