]> granicus.if.org Git - postgresql/blob - doc/src/FAQ/TODO.html
Move to ALTER section:
[postgresql] / doc / src / FAQ / TODO.html
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html>
4 <head>
5 <title>PostgreSQL TODO List</title>
6 <meta name="generator" content="HTML::TextToHTML v2.25"/>
7 </head>
8 <body bgcolor="#FFFFFF" text="#000000" link="#FF0000" vlink="#A00000" alink="#0000FF">
9 <h1><a name="section_1">PostgreSQL TODO List</a></h1>
10 <p>Current maintainer:     Bruce Momjian (<a href="mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</a>)<br/>
11 Last updated:           Mon May 30 17:12:22 EDT 2005
12 </p>
13 <p>The most recent version of this document can be viewed at<br/>
14 <a href="http://www.postgresql.org/docs/faqs.TODO.html">http://www.postgresql.org/docs/faqs.TODO.html</a>.
15 </p>
16 <p><strong>A hyphen, "-", marks changes that will appear in the upcoming 8.1 release.</strong>
17 </p>
18 <p>Bracketed items, "[<a href="http://momjian.postgresql.org/cgi-bin/pgtodo?"></a>]", have more detail.
19 </p>
20 <p>This list contains all known PostgreSQL bugs and feature requests. If<br/>
21 you would like to work on an item, please read the Developer's FAQ<br/>
22 first.
23 </p>
24 <h1><a name="section_2">Administration</a></h1>
25
26 <ul>
27   <li>Remove behavior of postmaster -o after making postmaster/postgres
28   flags unique
29   </li><li>Allow limits on per-db/user connections
30   </li><li>Add group object ownership, so groups can rename/drop/grant on objects,
31   so we can implement roles
32   </li><li>Allow server log information to be output as INSERT statements
33 <p>  This would allow server log information to be easily loaded into
34   a database for analysis.
35 </p>
36   </li><li>Prevent default re-use of sysids for dropped users and groups
37 <p>  Currently, if a user is removed while he still owns objects, a new
38   user given might be given their user id and inherit the
39   previous users objects.
40 </p>
41   </li><li>Prevent dropping user that still owns objects, or auto-drop the objects
42   </li><li>Allow pooled connections to list all prepared queries
43 <p>  This would allow an application inheriting a pooled connection to know
44   the queries prepared in the current session.
45 </p>
46   </li><li>Allow major upgrades without dump/reload, perhaps using pg_upgrade
47   </li><li>Have SHOW ALL and pg_settings show descriptions for server-side variables
48   </li><li>Allow GRANT/REVOKE permissions to be applied to all schema objects with one
49   command
50 <p>  The proposed syntax is:
51 </p><p>        GRANT SELECT ON ALL TABLES IN public TO phpuser;
52         GRANT SELECT ON NEW TABLES IN public TO phpuser;
53 </p>
54   </li><li>Allow GRANT/REVOKE permissions to be inherited by objects based on
55   schema permissions
56   </li><li>Check for unreferenced table files created by transactions that were
57   in-progress when the server terminated abruptly
58   </li><li>Allow reporting of which objects are in which tablespaces
59 <p>  This item is difficult because a tablespace can contain objects from
60   multiple databases. There is a server-side function that returns the
61   databases which use a specific tablespace, so this requires a tool
62   that will call that function and connect to each database to find the
63   objects in each database for that tablespace.
64 </p>
65   </li><li>Allow a database in tablespace t1 with tables created in tablespace t2
66   to be used as a template for a new database created with default
67   tablespace t2
68 <p>  All objects in the default database tablespace must have default tablespace
69   specifications.  This is because new databases are created by copying
70   directories.  If you mix default tablespace tables and tablespace-specified
71   tables in the same directory, creating a new database from such a mixed
72   directory would create a new database with tables that had incorrect
73   explicit tablespaces.  To fix this would require modifying pg_class in the
74   newly copied database, which we don't currently do.
75 </p>
76   </li><li>Add a GUC variable to control the tablespace for temporary objects and
77   sort files
78 <p>  It could start with a random tablespace from a supplied list and cycle
79   through the list.
80 </p>
81   </li><li>Add ability to monitor the use of temporary sort files
82   </li><li>Allow WAL replay of CREATE TABLESPACE to work when the directory
83   structure on the recovery computer is different from the original
84   </li><li>Add "include file" functionality in postgresql.conf
85   </li><li>-<em>Add session start time and last statement time to pg_stat_activity</em>
86   </li><li>Allow server logs to be remotely read using SQL commands
87   </li><li>Allow pg_hba.conf settings to be controlled via SQL
88 <p>  This would require a new global table that is dumped to flat file for
89   use by the postmaster.  We do a similar thing for pg_shadow currently.
90 </p>
91   </li><li>Allow administrators to safely terminate individual sessions
92 <p>  Right now, SIGTERM will terminate a session, but it is treated as
93   though the postmaster has paniced and shared memory might not be
94   cleaned up properly.  A new signal is needed for safe termination.
95 </p>
96   </li><li>Un-comment all variables in postgresql.conf
97 <p>  By not showing commented-out variables, we discourage people from
98   thinking that re-commenting a variable returns it to its default.
99   This has to address environment variables that are then overridden
100   by config file values.  Another option is to allow commented values
101   to return to their default values.
102 </p>
103   </li><li>Allow point-in-time recovery to archive partially filled write-ahead
104   logs
105 <p>  Currently only full WAL files are archived. This means that the most
106   recent transactions aren't available for recovery in case of a disk
107   failure.  This could be triggered by a user command or a timer.
108 </p>
109   </li><li>Automatically force archiving of partially-filled WAL files when 
110   pg_stop_backup() is called or the server is stopped
111 <p>  Doing this will allow administrators to know more easily when the
112   archive contins all the files needed for point-in-time recovery.
113 </p>
114   </li><li>Create dump tool for write-ahead logs for use in determining
115   transaction id for point-in-time recovery
116   </li><li>Set proper permissions on non-system schemas during db creation
117 <p>  Currently all schemas are owned by the super-user because they are
118   copied from the template1 database.
119 </p>
120   </li><li>Add a function that returns the 'uptime' of the postmaster
121   </li><li>Allow a warm standby system to also allow read-only queries
122 <p>  This is useful for checking PITR recovery.
123 </p>
124   </li><li>Allow the PITR process to be debugged and data examined
125   </li><li>-<em>Add the client IP address and port to pg_stat_activity</em>
126   </li><li>Improve replication solutions
127   <ul>
128     <li>Load balancing
129 <p>          You can use any of the master/slave replication servers to use a
130           standby server for data warehousing. To allow read/write queries to
131           multiple servers, you need multi-master replication like pgcluster.
132 </p>
133     </li><li>Allow replication over unreliable or non-persistent links
134   </li></ul>
135   </li><li>Support table partitioning that allows a single table to be stored
136   in subtables that are partitioned based on the primary key or a WHERE
137   clause
138   </li><li>Allow postgresql.conf values to be set so they can not be changed by
139   the user
140 </li></ul>
141 <h1><a name="section_3">Data Types</a></h1>
142
143 <ul>
144   <li>Remove Money type, add money formatting for decimal type
145   </li><li>Change NUMERIC to enforce the maximum precision, and increase it
146   </li><li>Add function to return compressed length of TOAST data values
147   </li><li>Allow INET subnet tests using non-constants to be indexed
148   </li><li>Add transaction_timestamp(), statement_timestamp(), clock_timestamp()
149   functionality
150 <p>  Current CURRENT_TIMESTAMP returns the start time of the current
151   transaction, and gettimeofday() returns the wallclock time. This will
152   make time reporting more consistent and will allow reporting of
153   the statement start time.
154 </p>
155   </li><li>Have sequence dependency track use of DEFAULT sequences,
156   seqname.nextval (?)
157   </li><li>Disallow changing default expression of a SERIAL column (?)
158   </li><li>Allow infinite dates just like infinite timestamps
159   </li><li>Have initdb set DateStyle based on locale?
160   </li><li>Add pg_get_acldef(), pg_get_typedefault(), and pg_get_attrdef()
161   </li><li>Allow to_char() to print localized month names
162   </li><li>Allow functions to have a schema search path specified at creation time
163   </li><li>Allow substring/replace() to get/set bit values
164   </li><li>Add a GUC variable to allow output of interval values in ISO8601 format
165   </li><li>Fix data types where equality comparison isn't intuitive, e.g. box
166   </li><li>Merge hardwired timezone names with the TZ database; allow either kind
167   everywhere a TZ name is currently taken
168   </li><li>Allow customization of the known set of TZ names (generalize the
169   present australian_timezones hack)
170   </li><li>Allow TIMESTAMP WITH TIME ZONE to store the original timezone
171   information, either zone name or offset from UTC
172 <p>  If the TIMESTAMP value is stored with a time zone name, interval 
173   computations should adjust based on the time zone rules, e.g. adding
174   24 hours to a timestamp would yield a different result from adding one
175   day.
176 </p>
177   </li><li>Prevent INET cast to CIDR if the unmasked bits are not zero, or
178   zero the bits
179   </li><li>Prevent INET cast to CIDR from droping netmask, SELECT '<a href="telnet://1.1.1.1">1.1.1.1</a>'::inet::cidr
180   </li><li>Allow INET + INT4 to increment the host part of the address, or
181   throw an error on overflow
182   </li><li>Add 'tid != tid ' operator for use in corruption recovery
183   </li><li>Prevent to_char() on interval from returning meaningless values
184 <p>  For example, to_char('1 month', 'mon') is meaningless.  Basically,
185   most date-related parameters to to_char() are meaningless for
186   intervals because interval is not anchored to a date.
187 </p>
188   </li><li>Allow to_char() on interval values to accumulate the highest unit
189   requested
190 <p>  Some special format flag would be required to request such
191   accumulation.  Such functionality could also be added to EXTRACT. 
192   Prevent accumulation that crosses the month/day boundary because of
193   the uneven number of days in a month.
194 </p>
195   <ul>
196     <li>to_char(INTERVAL '1 hour 5 minutes', 'MI') =&gt; 65
197     </li><li>to_char(INTERVAL '43 hours 20 minutes', 'MI' ) =&gt; 2600 
198     </li><li>to_char(INTERVAL '43 hours 20 minutes', 'WK:DD:HR:MI') =&gt; 0:1:19:20
199     </li><li>to_char(INTERVAL '3 years 5 months','MM') =&gt; 41
200   </li></ul>
201   </li><li>Add ISO INTERVAL handling
202   <ul>
203     <li>Add support for day-time syntax, INTERVAL '1 2:03:04' DAY TO SECOND
204     </li><li>Add support for year-month syntax, INTERVAL '50-6' YEAR TO MONTH
205     </li><li>For syntax that isn't uniquely ISO or PG syntax, like '1:30' or
206           '1', treat as ISO if there is a range specification clause,
207           and as PG if there no clause is present, e.g. interpret '1:30' 
208           MINUTE TO SECOND as '1 minute 30 seconds', and interpret '1:30'
209           as '1 hour, 30 minutes'
210     </li><li>Interpret INTERVAL '1 year' MONTH as CAST (INTERVAL '1 year' AS
211           INTERVAL MONTH), and this should return '12 months'
212     </li><li>Round or truncate values to the requested precision, e.g.
213           INTERVAL '11 months' AS YEAR should return one or zero
214     </li><li>Support precision, CREATE TABLE foo (a INTERVAL MONTH(3))
215   </li></ul>
216   </li><li>ARRAYS
217   <ul>
218     <li>Allow NULLs in arrays
219     </li><li>Allow MIN()/MAX() on arrays
220     </li><li>Delay resolution of array expression's data type so assignment
221           coercion can be performed on empty array expressions
222     </li><li>Modify array literal representation to handle array index lower bound
223           of other than one
224   </li></ul>
225   </li><li>BINARY DATA
226   <ul>
227     <li>Improve vacuum of large objects, like /contrib/vacuumlo (?)
228     </li><li>Add security checking for large objects
229 <p>          Currently large objects entries do not have owners. Permissions can
230           only be set at the pg_largeobject table level.
231 </p>
232     </li><li>Auto-delete large objects when referencing row is deleted
233     </li><li>Allow read/write into TOAST values like large objects
234 <p>          This requires the TOAST column to be stored EXTERNAL.
235 </p>
236   </li></ul>
237 </li></ul>
238 <h1><a name="section_4">Multi-Language Support</a></h1>
239
240 <ul>
241   <li>Add NCHAR (as distinguished from ordinary varchar),
242   </li><li>Allow locale to be set at database creation
243 <p>  Currently locale can only be set during initdb.  No global tables have
244   locale-aware columns.  However, the database template used during
245   database creation might have locale-aware indexes.  The indexes would
246   need to be reindexed to match the new locale.
247 </p>
248   </li><li>Allow encoding on a per-column basis
249 <p>  Right now only one encoding is allowed per database.
250 </p>
251   </li><li>Support multiple simultaneous character sets, per SQL92
252   </li><li>Improve UTF8 combined character handling (?)
253   </li><li>Add octet_length_server() and octet_length_client()
254   </li><li>Make octet_length_client() the same as octet_length()?
255 </li></ul>
256 <h1><a name="section_5">Views / Rules</a></h1>
257
258 <ul>
259   <li>Automatically create rules on views so they are updateable, per SQL99
260 <p>  We can only auto-create rules for simple views.  For more complex
261   cases users will still have to write rules.
262 </p>
263   </li><li>Add the functionality for WITH CHECK OPTION clause of CREATE VIEW
264   </li><li>Allow NOTIFY in rules involving conditionals
265   </li><li>Have views on temporary tables exist in the temporary namespace
266   </li><li>Allow temporary views on non-temporary tables
267   </li><li>Allow RULE recompilation
268 </li></ul>
269 <h1><a name="section_6">Indexes</a></h1>
270
271 <ul>
272   <li>Allow inherited tables to inherit index, UNIQUE constraint, and primary
273   key, foreign key
274   </li><li>UNIQUE INDEX on base column not honored on INSERTs/UPDATEs from
275   inherited table:  INSERT INTO inherit_table (unique_index_col) VALUES
276   (dup) should fail
277 <p>  The main difficulty with this item is the problem of creating an index
278   that can span more than one table.
279 </p>
280   </li><li>Add UNIQUE capability to non-btree indexes
281   </li><li>Add rtree index support for line, lseg, path, point
282   </li><li>-<em>Use indexes for MIN() and MAX()</em>
283 <p>  MIN/MAX queries can already be rewritten as SELECT col FROM tab ORDER
284   BY col {DESC} LIMIT 1. Completing this item involves doing this
285   transformation automatically.
286 </p>
287   </li><li>Use index to restrict rows returned by multi-key index when used with
288   non-consecutive keys to reduce heap accesses
289 <p>  For an index on col1,col2,col3, and a WHERE clause of col1 = 5 and
290   col3 = 9, spin though the index checking for col1 and col3 matches,
291   rather than just col1; also called skip-scanning.
292 </p>
293   </li><li>Prevent index uniqueness checks when UPDATE does not modify the column
294 <p>  Uniqueness (index) checks are done when updating a column even if the
295   column is not modified by the UPDATE.
296 </p>
297   </li><li>Fetch heap pages matching index entries in sequential order
298 <p>  Rather than randomly accessing heap pages based on index entries, mark
299   heap pages needing access in a bitmap and do the lookups in sequential
300   order. Another method would be to sort heap ctids matching the index
301   before accessing the heap rows.
302 </p>
303   </li><li>-<em>Allow non-bitmap indexes to be combined by creating bitmaps in memory</em>
304 <p>  This feature allows separate indexes to be ANDed or ORed together.  This
305   is particularly useful for data warehousing applications that need to
306   query the database in an many permutations.  This feature scans an index
307   and creates an in-memory bitmap, and allows that bitmap to be combined
308   with other bitmap created in a similar way.  The bitmap can either index
309   all TIDs, or be lossy, meaning it records just page numbers and each
310   page tuple has to be checked for validity in a separate pass.
311 </p>
312   </li><li>Allow the creation of on-disk bitmap indexes which can be quickly
313   combined with other bitmap indexes
314 <p>  Such indexes could be more compact if there are only a few distinct values.
315   Such indexes can also be compressed.  Keeping such indexes updated can be
316   costly.
317 </p>
318   </li><li>Allow use of indexes to search for NULLs
319 <p>  One solution is to create a partial index on an IS NULL expression.
320 </p>
321   </li><li>Add concurrency to GIST
322   </li><li>Pack hash index buckets onto disk pages more efficiently
323 <p>  Currently no only one hash bucket can be stored on a page. Ideally
324   several hash buckets could be stored on a single page and greater
325   granularity used for the hash algorithm.
326 </p>
327   </li><li>Consider sorting hash buckets so entries can be found using a binary
328   search, rather than a linear scan
329   </li><li>In hash indexes, consider storing the hash value with or instead
330   of the key itself
331   </li><li>Allow accurate statistics to be collected on indexes with more than
332   one column or expression indexes, perhaps using per-index statistics
333   </li><li>Add fillfactor to control reserved free space during index creation
334   </li><li>Allow the creation of indexes with mixed ascending/descending specifiers
335 </li></ul>
336 <h1><a name="section_7">Commands</a></h1>
337
338 <ul>
339   <li>Add BETWEEN ASYMMETRIC/SYMMETRIC
340   </li><li>Change LIMIT/OFFSET and FETCH/MOVE to use int8
341   </li><li>Allow CREATE TABLE AS to determine column lengths for complex
342   expressions like SELECT col1 || col2
343   </li><li>Allow UPDATE to handle complex aggregates [<a href="http://momjian.postgresql.org/cgi-bin/pgtodo?update">update</a>] (?)
344   </li><li>Allow backslash handling in quoted strings to be disabled for portability
345 <p>  The use of C-style backslashes (.e.g. \n, \r) in quoted strings is not
346   SQL-spec compliant, so allow such handling to be disabled.  However,
347   disabling backslashes could break many third-party applications and tools.
348 </p>
349   </li><li>Allow an alias to be provided for the target table in UPDATE/DELETE
350 <p>  This is not SQL-spec but many DBMSs allow it.
351 </p>
352   </li><li>-<em>Allow additional tables to be specified in DELETE for joins</em>
353 <p>  UPDATE already allows this (UPDATE...FROM) but we need similar
354   functionality in DELETE.  It's been agreed that the keyword should
355   be USING, to avoid anything as confusing as DELETE FROM a FROM b.
356 </p>
357   </li><li>Add CORRESPONDING BY to UNION/INTERSECT/EXCEPT
358   </li><li>Allow REINDEX to rebuild all database indexes, remove /contrib/reindex
359   </li><li>Add ROLLUP, CUBE, GROUPING SETS options to GROUP BY
360   </li><li>Add a schema option to createlang
361   </li><li>Allow UPDATE tab SET ROW (col, ...) = (...) for updating multiple columns
362   </li><li>Allow SET CONSTRAINTS to be qualified by schema/table name
363   </li><li>Allow TRUNCATE ... CASCADE/RESTRICT
364   </li><li>Allow PREPARE of cursors
365   </li><li>Allow PREPARE to automatically determine parameter types based on the SQL
366   statement
367   </li><li>Allow finer control over the caching of prepared query plans
368 <p>  Currently, queries prepared via the libpq API are planned on first
369   execute using the supplied parameters --- allow SQL PREPARE to do the
370   same.  Also, allow control over replanning prepared queries either
371   manually or automatically when statistics for execute parameters
372   differ dramatically from those used during planning.
373 </p>
374   </li><li>Allow LISTEN/NOTIFY to store info in memory rather than tables?
375 <p>  Currently LISTEN/NOTIFY information is stored in pg_listener. Storing
376   such information in memory would improve performance.
377 </p>
378   </li><li>Dump large object comments in custom dump format
379   </li><li>Add optional textual message to NOTIFY
380 <p>  This would allow an informational message to be added to the notify
381   message, perhaps indicating the row modified or other custom
382   information.
383 </p>
384   </li><li>Use more reliable method for CREATE DATABASE to get a consistent copy
385   of db?
386 <p>  Currently the system uses the operating system COPY command to create
387   a new database.
388 </p>
389   </li><li>Add C code to copy directories for use in creating new databases
390   </li><li>Have pg_ctl look at PGHOST in case it is a socket directory?
391   </li><li>Allow column-level GRANT/REVOKE privileges
392   </li><li>Add a GUC variable to warn about non-standard SQL usage in queries
393   </li><li>Add MERGE command that does UPDATE/DELETE, or on failure, INSERT (rules,
394   triggers?)
395   </li><li>Add ON COMMIT capability to CREATE TABLE AS SELECT
396   </li><li>Add NOVICE output level for helpful messages like automatic sequence/index
397   creation
398   </li><li>Add COMMENT ON for all cluster global objects (users, groups, databases
399   and tablespaces)
400   </li><li>Add an option to automatically use savepoints for each statement in a
401   multi-statement transaction.
402 <p>  When enabled, this would allow errors in multi-statement transactions
403   to be automatically ignored.
404 </p>
405   </li><li>Make row-wise comparisons work per SQL spec
406   </li><li>Add RESET CONNECTION command to reset all session state
407 <p>  This would include resetting of all variables (RESET ALL), dropping of
408   all temporary tables, removal of any NOTIFYs, cursors, prepared 
409   queries(?), currval()s, etc.  This could be used for connection pooling. 
410   We could also change RESET ALL to have this functionality.
411 </p>
412   </li><li>Allow FOR UPDATE queries to do NOWAIT locks
413   </li><li>Add GUC to issue notice about queries that use unjoined tables
414   </li><li>ALTER
415   <ul>
416     <li>Have ALTER TABLE RENAME rename SERIAL sequence names
417     </li><li>Add ALTER DOMAIN TYPE
418     </li><li>Allow ALTER TABLE ... ALTER CONSTRAINT ... RENAME
419     </li><li>Allow ALTER TABLE to change constraint deferrability and actions
420     </li><li>Disallow dropping of an inherited constraint
421     </li><li>Allow objects to be moved to different schemas
422     </li><li>Allow ALTER TABLESPACE to move to different directories
423     </li><li>Allow databases and schemas to be moved to different tablespaces
424 <p>          One complexity is whether moving a schema should move all existing
425           schema objects or just define the location for future object creation.
426 </p>
427     </li><li>Allow moving system tables to other tablespaces, where possible
428 <p>          Currently non-global system tables must be in the default database
429           schema. Global system tables can never be moved.
430 </p>
431     </li><li>Prevent child tables from altering constraints like CHECK that were
432           inherited from the parent table
433   </li></ul>
434   </li><li>CLUSTER
435   <ul>
436     <li>Automatically maintain clustering on a table
437 <p>          This might require some background daemon to maintain clustering
438           during periods of low usage. It might also require tables to be only
439           paritally filled for easier reorganization.  Another idea would
440           be to create a merged heap/index data file so an index lookup would
441           automatically access the heap data too.  A third idea would be to
442           store heap rows in hashed groups, perhaps using a user-supplied
443           hash function.
444 </p>
445     </li><li>Add default clustering to system tables
446 <p>          To do this, determine the ideal cluster index for each system
447           table and set the cluster setting during initdb.
448 </p>
449   </li></ul>
450   </li><li>COPY
451   <ul>
452     <li>Allow COPY to report error lines and continue
453 <p>          This requires the use of a savepoint before each COPY line is
454           processed, with ROLLBACK on COPY failure.
455 </p>
456     </li><li>Allow COPY to understand \x as a hex byte
457     </li><li>Have COPY return the number of rows loaded/unloaded (?)
458     </li><li>-<em>Allow COPY to optionally include column headings in the first line</em>
459     </li><li>-<em>Allow COPY FROM ... CSV to interpret newlines and carriage</em>
460           returns in data
461   </li></ul>
462   </li><li>CURSOR
463   <ul>
464     <li>Allow UPDATE/DELETE WHERE CURRENT OF cursor
465 <p>          This requires using the row ctid to map cursor rows back to the
466           original heap row. This become more complicated if WITH HOLD cursors
467           are to be supported because WITH HOLD cursors have a copy of the row
468           and no FOR UPDATE lock.
469 </p>
470     </li><li>Prevent DROP TABLE from dropping a row referenced by its own open
471           cursor (?)
472     </li><li>Allow pooled connections to list all open WITH HOLD cursors
473 <p>          Because WITH HOLD cursors exist outside transactions, this allows
474           them to be listed so they can be closed.
475 </p>
476   </li></ul>
477   </li><li>INSERT
478   <ul>
479     <li>Allow INSERT/UPDATE of the system-generated oid value for a row
480     </li><li>Allow INSERT INTO tab (col1, ..) VALUES (val1, ..), (val2, ..)
481     </li><li>Allow INSERT/UPDATE ... RETURNING new.col or old.col
482 <p>          This is useful for returning the auto-generated key for an INSERT.
483           One complication is how to handle rules that run as part of
484           the insert.
485 </p>
486   </li></ul>
487   </li><li>SHOW/SET
488   <ul>
489     <li>Add SET PERFORMANCE_TIPS option to suggest INDEX, VACUUM, VACUUM
490           ANALYZE, and CLUSTER
491     </li><li>Add SET PATH for schemas (?)
492 <p>          This is basically the same as SET search_path.
493 </p>
494   </li></ul>
495   </li><li>SERVER-SIDE LANGUAGES
496   <ul>
497     <li>Allow PL/PgSQL's RAISE function to take expressions (?)
498 <p>          Currently only constants are supported.
499 </p>
500     </li><li>-<em>Change PL/PgSQL to use palloc() instead of malloc()</em>
501     </li><li>Handle references to temporary tables that are created, destroyed,
502           then recreated during a session, and EXECUTE is not used
503 <p>          This requires the cached PL/PgSQL byte code to be invalidated when
504           an object referenced in the function is changed.
505 </p>
506     </li><li>Fix PL/pgSQL RENAME to work on variables other than OLD/NEW
507     </li><li>Allow function parameters to be passed by name,
508           get_employee_salary(emp_id =&gt; 12345, tax_year =&gt; 2001)
509     </li><li>Add Oracle-style packages
510     </li><li>Add table function support to pltcl, plperl, plpython (?)
511     </li><li>Allow PL/pgSQL to name columns by ordinal position, e.g. rec.(3)
512     </li><li>Allow PL/pgSQL EXECUTE query_var INTO record_var;
513     </li><li>Add capability to create and call PROCEDURES
514     </li><li>Allow PL/pgSQL to handle %TYPE arrays, e.g. tab.col%TYPE[<a href="http://momjian.postgresql.org/cgi-bin/pgtodo?"></a>]
515     </li><li>Add MOVE to PL/pgSQL
516   </li></ul>
517 </li></ul>
518 <h1><a name="section_8">Clients</a></h1>
519
520 <ul>
521   <li>Add a libpq function to support Parse/DescribeStatement capability
522   </li><li>Prevent libpq's PQfnumber() from lowercasing the column name (?)
523   </li><li>Allow libpq to access SQLSTATE so pg_ctl can test for connection failure
524 <p>  This would be used for checking if the server is up.
525 </p>
526   </li><li>Have psql show current values for a sequence
527   </li><li>Move psql backslash database information into the backend, use mnemonic
528   commands? [<a href="http://momjian.postgresql.org/cgi-bin/pgtodo?psql">psql</a>]
529 <p>  This would allow non-psql clients to pull the same information out of
530   the database as psql.
531 </p>
532   </li><li>Fix psql's display of schema information (Neil)
533   </li><li>Allow psql \pset boolean variables to set to fixed values, rather than toggle
534   </li><li>Consistently display privilege information for all objects in psql
535   </li><li>Improve psql's handling of multi-line queries
536   </li><li>pg_dump
537   <ul>
538     <li>Have pg_dump use multi-statement transactions for INSERT dumps
539     </li><li>Allow pg_dump to use multiple -t and -n switches
540 <p>          This should be done by allowing a '-t schema.table' syntax.
541 </p>
542     </li><li>Add dumping of comments on composite type columns
543     </li><li>Add dumping of comments on index columns
544     </li><li>Replace crude DELETE FROM method of pg_dumpall for cleaning of
545           users and groups with separate DROP commands
546     </li><li>Add dumping and restoring of LOB comments
547     </li><li>Stop dumping CASCADE on DROP TYPE commands in clean mode
548     </li><li>Add full object name to the tag field.  eg. for operators we need
549           '=(integer, integer)', instead of just '='.
550     </li><li>Add pg_dumpall custom format dumps.
551 <p>          This is probably best done by combining pg_dump and pg_dumpall
552           into a single binary.
553 </p>
554     </li><li>Add CSV output format
555     </li><li>Update pg_dump and psql to use the new COPY libpq API (Christopher)
556   </li></ul>
557   </li><li>ECPG
558   <ul>
559     <li>Docs
560 <p>          Document differences between ecpg and the SQL standard and
561           information about the Informix-compatibility module.
562 </p>
563     </li><li>Solve cardinality &gt; 1 for input descriptors / variables (?)
564     </li><li>Add a semantic check level, e.g. check if a table really exists
565     </li><li>fix handling of DB attributes that are arrays
566     </li><li>Use backend PREPARE/EXECUTE facility for ecpg where possible
567     </li><li>Implement SQLDA
568     </li><li>Fix nested C comments
569     </li><li>sqlwarn[<a href="http://momjian.postgresql.org/cgi-bin/pgtodo?6">6</a>] should be 'W' if the PRECISION or SCALE value specified
570     </li><li>Make SET CONNECTION thread-aware, non-standard?
571     </li><li>Allow multidimensional arrays
572     </li><li>Add internationalized message strings
573   </li></ul>
574 </li></ul>
575 <h1><a name="section_9">Referential Integrity</a></h1>
576
577 <ul>
578   <li>Add MATCH PARTIAL referential integrity
579   </li><li>Add deferred trigger queue file
580 <p>  Right now all deferred trigger information is stored in backend
581   memory.  This could exhaust memory for very large trigger queues.
582   This item involves dumping large queues into files.
583 </p>
584   </li><li>-<em>Implement shared row locks and use them in RI triggers</em>
585   </li><li>Enforce referential integrity for system tables
586   </li><li>Change foreign key constraint for array -&gt; element to mean element
587   in array (?)
588   </li><li>Allow DEFERRABLE UNIQUE constraints (?)
589   </li><li>Allow triggers to be disabled [<a href="http://momjian.postgresql.org/cgi-bin/pgtodo?trigger">trigger</a>]
590 <p>  Currently the only way to disable triggers is to modify the system
591   tables.
592 </p>
593   </li><li>With disabled triggers, allow pg_dump to use ALTER TABLE ADD FOREIGN KEY
594 <p>  If the dump is known to be valid, allow foreign keys to be added
595   without revalidating the data.
596 </p>
597   </li><li>Allow statement-level triggers to access modified rows
598   </li><li>Support triggers on columns (Greg Sabino Mullane)
599   </li><li>Remove CREATE CONSTRAINT TRIGGER
600 <p>  This was used in older releases to dump referential integrity
601   constraints.
602 </p>
603   </li><li>Allow AFTER triggers on system tables
604 <p>  System tables are modified in many places in the backend without going
605   through the executor and therefore not causing triggers to fire. To
606   complete this item, the functions that modify system tables will have
607   to fire triggers.
608 </p>
609 </li></ul>
610 <h1><a name="section_10">Dependency Checking</a></h1>
611
612 <ul>
613   <li>Flush cached query plans when the dependent objects change
614   </li><li>Track dependencies in function bodies and recompile/invalidate
615 </li></ul>
616 <h1><a name="section_11">Exotic Features</a></h1>
617
618 <ul>
619   <li>Add SQL99 WITH clause to SELECT
620   </li><li>Add SQL99 WITH RECURSIVE to SELECT
621   </li><li>Add pre-parsing phase that converts non-ISO syntax to supported
622   syntax
623 <p>  This could allow SQL written for other databases to run without
624   modification.
625 </p>
626   </li><li>Allow plug-in modules to emulate features from other databases
627   </li><li>SQL*Net listener that makes PostgreSQL appear as an Oracle database
628   to clients
629   </li><li>Allow queries across databases or servers with transaction
630   semantics
631 <p>  Right now contrib/dblink can be used to issue such queries except it
632   does not have locking or transaction semantics. Two-phase commit is
633   needed to enable transaction semantics.
634 </p>
635   </li><li>Add two-phase commit
636   </li><li>Add the features of packages
637   <ul>
638     <li>Make private objects accessable only to objects in the same schema
639     </li><li>Allow current_schema.objname to access current schema objects
640     </li><li>Add session variables
641     </li><li>Allow nested schemas
642   </li></ul>
643 </li></ul>
644 <h2><a name="section_11_1">PERFORMANCE</a></h2>
645
646 <h1><a name="section_12">Fsync</a></h1>
647
648 <ul>
649   <li>Improve commit_delay handling to reduce fsync()
650   </li><li>Determine optimal fdatasync/fsync, O_SYNC/O_DSYNC options
651   </li><li>Allow multiple blocks to be written to WAL with one write()
652   </li><li>Add an option to sync() before fsync()'ing checkpoint files
653 </li></ul>
654 <h1><a name="section_13">Cache</a></h1>
655
656 <ul>
657   <li>Allow free-behind capability for large sequential scans, perhaps using
658   posix_fadvise()
659 <p>  Posix_fadvise() can control both sequential/random file caching and
660   free-behind behavior, but it is unclear how the setting affects other
661   backends that also have the file open, and the feature is not supported
662   on all operating systems.
663 </p>
664   </li><li>Consider use of open/fcntl(O_DIRECT) to minimize OS caching,
665   especially for WAL writes
666   </li><li>-<em>Cache last known per-tuple offsets to speed long tuple access</em>
667   </li><li>Speed up COUNT(*)
668 <p>  We could use a fixed row count and a +/- count to follow MVCC
669   visibility rules, or a single cached value could be used and
670   invalidated if anyone modifies the table.  Another idea is to
671   get a count directly from a unique index, but for this to be
672   faster than a sequential scan it must avoid access to the heap
673   to obtain tuple visibility information.
674 </p>
675   </li><li>Allow data to be pulled directly from indexes
676 <p>  Currently indexes do not have enough tuple visibility information 
677   to allow data to be pulled from the index without also accessing 
678   the heap.  One way to allow this is to set a bit to index tuples 
679   to indicate if a tuple is currently visible to all transactions 
680   when the first valid heap lookup happens.  This bit would have to 
681   be cleared when a heap tuple is expired.
682 </p>
683   </li><li>Consider automatic caching of queries at various levels:
684   <ul>
685     <li>Parsed query tree
686     </li><li>Query execute plan
687     </li><li>Query results
688   </li></ul>
689   </li><li>-<em>Allow the size of the buffer cache used by temporary objects to be</em>
690   specified as a GUC variable
691 <p>  Larger local buffer cache sizes requires more efficient handling of
692   local cache lookups.
693 </p>
694   </li><li>Improve the background writer
695 <p>  Allow the background writer to more efficiently write dirty buffers
696   from the end of the LRU cache and use a clock sweep algorithm to
697   write other dirty buffers to reduced checkpoint I/O
698 </p>
699   </li><li>Allow sequential scans to take advantage of other concurrent
700   sequentiqal scans, also called "Synchronised Scanning"
701 <p>  One possible implementation is to start sequential scans from the lowest
702   numbered buffer in the shared cache, and when reaching the end wrap
703   around to the beginning, rather than always starting sequential scans
704   at the start of the table.
705 </p>
706 </li></ul>
707 <h1><a name="section_14">Vacuum</a></h1>
708
709 <ul>
710   <li>Improve speed with indexes
711 <p>  For large table adjustements during vacuum, it is faster to reindex
712   rather than update the index.
713 </p>
714   </li><li>Reduce lock time by moving tuples with read lock, then write
715   lock and truncate table
716 <p>  Moved tuples are invisible to other backends so they don't require a
717   write lock. However, the read lock promotion to write lock could lead
718   to deadlock situations.
719 </p>
720   </li><li>-<em>Add a warning when the free space map is too small</em>
721   </li><li>Maintain a map of recently-expired rows
722 <p>  This allows vacuum to target specific pages for possible free space 
723   without requiring a sequential scan.
724 </p>
725   </li><li>Auto-vacuum
726   <ul>
727     <li>Move into the backend code
728     </li><li>Scan the buffer cache to find free space or use background writer
729     </li><li>Use free-space map information to guide refilling
730     </li><li>Do VACUUM FULL if table is nearly empty?
731   </li></ul>
732 </li></ul>
733 <h1><a name="section_15">Locking</a></h1>
734
735 <ul>
736   <li>Make locking of shared data structures more fine-grained
737 <p>  This requires that more locks be acquired but this would reduce lock
738   contention, improving concurrency.
739 </p>
740   </li><li>Add code to detect an SMP machine and handle spinlocks accordingly
741   from distributted.net, <a href="http://www1.distributed.net/source">http://www1.distributed.net/source</a>,
742   in client/common/cpucheck.cpp
743 <p>  On SMP machines, it is possible that locks might be released shortly,
744   while on non-SMP machines, the backend should sleep so the process
745   holding the lock can complete and release it.
746 </p>
747   </li><li>-<em>Improve SMP performance on i386 machines</em>
748 <p>  i386-based SMP machines can generate excessive context switching
749   caused by lock failure in high concurrency situations. This may be
750   caused by CPU cache line invalidation inefficiencies.
751 </p>
752   </li><li>Research use of sched_yield() for spinlock acquisition failure
753   </li><li>Fix priority ordering of read and write light-weight locks (Neil)
754 </li></ul>
755 <h1><a name="section_16">Startup Time</a></h1>
756
757 <ul>
758   <li>Experiment with multi-threaded backend [<a href="http://momjian.postgresql.org/cgi-bin/pgtodo?thread">thread</a>]
759 <p>  This would prevent the overhead associated with process creation. Most
760   operating systems have trivial process creation time compared to
761   database startup overhead, but a few operating systems (WIn32,
762   Solaris) might benefit from threading.  Also explore the idea of
763   a single session using multiple threads to execute a query faster.
764 </p>
765   </li><li>Add connection pooling
766 <p>  It is unclear if this should be done inside the backend code or done
767   by something external like pgpool. The passing of file descriptors to
768   existing backends is one of the difficulties with a backend approach.
769 </p>
770 </li></ul>
771 <h1><a name="section_17">Write-Ahead Log</a></h1>
772
773 <ul>
774   <li>Eliminate need to write full pages to WAL before page modification [<a href="http://momjian.postgresql.org/cgi-bin/pgtodo?wal">wal</a>]
775 <p>  Currently, to protect against partial disk page writes, we write the
776   full page images to WAL before they are modified so we can correct any
777   partial page writes during recovery.  These pages can also be
778   eliminated from point-in-time archive files.
779 </p>
780   </li><li>Reduce WAL traffic so only modified values are written rather than
781   entire rows (?)
782   </li><li>Turn off after-change writes if fsync is disabled
783 <p>  If fsync is off, there is no purpose in writing full pages to WAL
784 </p>
785   </li><li>Add WAL index reliability improvement to non-btree indexes
786   </li><li>Allow the pg_xlog directory location to be specified during initdb
787   with a symlink back to the /data location
788   </li><li>Allow WAL information to recover corrupted pg_controldata
789   </li><li>Find a way to reduce rotational delay when repeatedly writing
790   last WAL page
791 <p>  Currently fsync of WAL requires the disk platter to perform a full
792   rotation to fsync again. One idea is to write the WAL to different
793   offsets that might reduce the rotational delay.
794 </p>
795   </li><li>Allow buffered WAL writes and fsync
796 <p>  Instead of guaranteeing recovery of all committed transactions, this
797   would provide improved performance by delaying WAL writes and fsync
798   so an abrupt operating system restart might lose a few seconds of
799   committed transactions but still be consistent.  We could perhaps
800   remove the 'fsync' parameter (which results in an an inconsistent
801   database) in favor of this capability.
802 </p>
803   </li><li>Eliminate WAL logging for CREATE TABLE AS when not doing WAL archiving
804   </li><li>Compress WAL entries [<a href="http://momjian.postgresql.org/cgi-bin/pgtodo?wal">wal</a>]
805   </li><li>Change WAL to use 32-bit CRC, for performance reasons
806 </li></ul>
807 <h1><a name="section_18">Optimizer / Executor</a></h1>
808
809 <ul>
810   <li>Add missing optimizer selectivities for date, r-tree, etc
811   </li><li>Allow ORDER BY ... LIMIT # to select high/low value without sort or
812   index using a sequential scan for highest/lowest values
813 <p>  Right now, if no index exists, ORDER BY ... LIMIT # requires we sort
814   all values to return the high/low value.  Instead The idea is to do a 
815   sequential scan to find the high/low value, thus avoiding the sort.
816   MIN/MAX already does this, but not for LIMIT &gt; 1.
817 </p>
818   </li><li>Precompile SQL functions to avoid overhead
819   </li><li>Create utility to compute accurate random_page_cost value
820   </li><li>Improve ability to display optimizer analysis using OPTIMIZER_DEBUG
821   </li><li>Have EXPLAIN ANALYZE highlight poor optimizer estimates
822   </li><li>Use CHECK constraints to influence optimizer decisions
823 <p>  CHECK constraints contain information about the distribution of values
824   within the table. This is also useful for implementing subtables where
825   a tables content is distributed across several subtables.
826 </p>
827   </li><li>Consider using hash buckets to do DISTINCT, rather than sorting
828 <p>  This would be beneficial when there are few distinct values.
829 </p>
830   </li><li>ANALYZE should record a pg_statistic entry for an all-NULL column
831   </li><li>Log queries where the optimizer row estimates were dramatically
832   different from the number of rows actually found (?)
833 </li></ul>
834 <h1><a name="section_19">Miscellaneous</a></h1>
835
836 <ul>
837   <li>Do async I/O for faster random read-ahead of data
838 <p>  Async I/O allows multiple I/O requests to be sent to the disk with
839   results coming back asynchronously.
840 </p>
841   </li><li>Use mmap() rather than SYSV shared memory or to write WAL files (?)
842 <p>  This would remove the requirement for SYSV SHM but would introduce
843   portability issues. Anonymous mmap (or mmap to /dev/zero) is required
844   to prevent I/O overhead.
845 </p>
846   </li><li>Consider mmap()'ing files into a backend?
847 <p>  Doing I/O to large tables would consume a lot of address space or
848   require frequent mapping/unmapping.  Extending the file also causes
849   mapping problems that might require mapping only individual pages,
850   leading to thousands of mappings.  Another problem is that there is no
851   way to _prevent_ I/O to disk from the dirty shared buffers so changes
852   could hit disk before WAL is written.
853 </p>
854   </li><li>Add a script to ask system configuration questions and tune postgresql.conf
855   </li><li>Use a phantom command counter for nested subtransactions to reduce
856   per-tuple overhead
857 </li></ul>
858 <h1><a name="section_20">Source Code</a></h1>
859
860 <ul>
861   <li>Add use of 'const' for variables in source tree
862   </li><li>Rename some /contrib modules from pg* to pg_*
863   </li><li>Move some things from /contrib into main tree
864   </li><li>Move some /contrib modules out to their own project sites
865   </li><li>Remove warnings created by -Wcast-align
866   </li><li>Move platform-specific ps status display info from ps_status.c to ports
867   </li><li>Add optional CRC checksum to heap and index pages
868   </li><li>Improve documentation to build only interfaces (Marc)
869   </li><li>Remove or relicense modules that are not under the BSD license, if possible
870   </li><li>Remove memory/file descriptor freeing before ereport(ERROR)
871   </li><li>Acquire lock on a relation before building a relcache entry for it
872   </li><li>Promote debug_query_string into a server-side function current_query()
873   </li><li>Allow the identifier length to be increased via a configure option
874   </li><li>Remove Win32 rename/unlink looping if unnecessary
875   </li><li>Remove kerberos4 from source tree?
876   </li><li>Allow cross-compiling by generating the zic database on the target system
877   </li><li>Improve NLS maintenace of libpgport messages linked onto applications
878   </li><li>Allow ecpg to work with MSVC and BCC
879   </li><li>-<em>Make src/port/snprintf.c thread-safe</em>
880   </li><li>Add xpath_array() to /contrib/xml2 to return results as an array
881   </li><li>Allow building in directories containing spaces
882 <p>  This is probably not possible because 'gmake' and other compiler tools
883   do not fully support quoting of paths with spaces.
884 </p>
885   </li><li>Allow installing to directories containing spaces
886 <p>  This is possible if proper quoting is added to the makefiles for the
887   install targets.  Because PostgreSQL supports relocatable installs, it
888   is already possible to install into a directory that doesn't contain 
889   spaces and then copy the install to a directory with spaces.
890 </p>
891   </li><li>Fix cross-compiling of time zone database via 'zic'
892   </li><li>Fix sgmltools so PDFs can be generated with bookmarks
893   </li><li>Win32
894   <ul>
895     <li>Remove configure.in check for link failure when cause is found
896     </li><li>Remove readdir() errno patch when runtime/mingwex/dirent.c rev
897           1.4 is released
898     </li><li>Remove psql newline patch when we find out why mingw outputs an
899           extra newline
900     </li><li>Allow psql to use readline once non-US code pages work with
901           backslashes
902     </li><li>Re-enable timezone output on log_line_prefix '%t' when a
903           shorter timezone string is available
904     </li><li>Improve dlerror() reporting string
905     </li><li>Fix problem with shared memory on the Win32 Terminal Server
906     </li><li>Add support for Unicode
907 <p>          To fix this, the data needs to be converted to/from UTF16/UTF8
908           so the Win32 wcscoll() can be used, and perhaps other functions
909           like towupper().  However, UTF8 already works with normal
910           locales but provides no ordering or character set classes.
911 </p>
912   </li></ul>
913   </li><li>Wire Protocol Changes
914   <ul>
915     <li>Allow dynamic character set handling
916     </li><li>Add decoded type, length, precision
917     </li><li>Use compression?
918     </li><li>Update clients to use data types, typmod, <a href="http://schema.table.column">schema.table.column</a>/ names
919           of result sets using new query protocol
920   </li></ul>
921 </li></ul>
922 <hr/>
923
924 <h3><a name="section_20_1_1">Developers who have claimed items are:</a></h3>
925 <ul>
926   <li>Alvaro is Alvaro Herrera &lt;<a href="mailto:alvherre@dcc.uchile.cl">alvherre@dcc.uchile.cl</a>&gt;
927   </li><li>Andrew is Andrew Dunstan &lt;<a href="mailto:andrew@dunslane.net">andrew@dunslane.net</a>&gt;
928   </li><li>Bruce is Bruce Momjian &lt;<a href="mailto:pgman@candle.pha.pa.us">pgman@candle.pha.pa.us</a>&gt; of Software Research Assoc.
929   </li><li>Christopher is Christopher Kings-Lynne &lt;<a href="mailto:chriskl@familyhealth.com.au">chriskl@familyhealth.com.au</a>&gt; of
930     Family Health Network
931   </li><li>Claudio is Claudio Natoli &lt;<a href="mailto:claudio.natoli@memetrics.com">claudio.natoli@memetrics.com</a>&gt;
932   </li><li>D'Arcy is D'Arcy J.M. Cain &lt;<a href="mailto:darcy@druid.net">darcy@druid.net</a>&gt; of The Cain Gang Ltd.
933   </li><li>Fabien is Fabien Coelho &lt;<a href="mailto:coelho@cri.ensmp.fr">coelho@cri.ensmp.fr</a>&gt;
934   </li><li>Gavin is Gavin Sherry &lt;<a href="mailto:swm@linuxworld.com.au">swm@linuxworld.com.au</a>&gt; of Alcove Systems Engineering
935   </li><li>Greg is Greg Sabino Mullane &lt;<a href="mailto:greg@turnstep.com">greg@turnstep.com</a>&gt;
936   </li><li>Hiroshi is Hiroshi Inoue &lt;<a href="mailto:Inoue@tpf.co.jp">Inoue@tpf.co.jp</a>&gt;
937   </li><li>Jan is Jan Wieck &lt;<a href="mailto:JanWieck@Yahoo.com">JanWieck@Yahoo.com</a>&gt; of Afilias, Inc.
938   </li><li>Joe is Joe Conway &lt;<a href="mailto:mail@joeconway.com">mail@joeconway.com</a>&gt;
939   </li><li>Karel is Karel Zak &lt;<a href="mailto:zakkr@zf.jcu.cz">zakkr@zf.jcu.cz</a>&gt;
940   </li><li>Magnus is Magnus Hagander &lt;<a href="mailto:mha@sollentuna.net">mha@sollentuna.net</a>&gt;
941   </li><li>Marc is Marc Fournier &lt;<a href="mailto:scrappy@hub.org">scrappy@hub.org</a>&gt; of PostgreSQL, Inc.
942   </li><li>Matthew T. O'Connor &lt;<a href="mailto:matthew@zeut.net">matthew@zeut.net</a>&gt;
943   </li><li>Michael is Michael Meskes &lt;<a href="mailto:meskes@postgresql.org">meskes@postgresql.org</a>&gt; of Credativ
944   </li><li>Neil is Neil Conway &lt;<a href="mailto:neilc@samurai.com">neilc@samurai.com</a>&gt;
945   </li><li>Oleg is Oleg Bartunov &lt;<a href="mailto:oleg@sai.msu.su">oleg@sai.msu.su</a>&gt;
946   </li><li>Peter is Peter Eisentraut &lt;<a href="mailto:peter_e@gmx.net">peter_e@gmx.net</a>&gt;
947   </li><li>Philip is Philip Warner &lt;<a href="mailto:pjw@rhyme.com.au">pjw@rhyme.com.au</a>&gt; of Albatross Consulting Pty. Ltd.
948   </li><li>Rod is Rod Taylor &lt;<a href="mailto:pg@rbt.ca">pg@rbt.ca</a>&gt;
949   </li><li>Simon is Simon Riggs &lt;<a href="mailto:simon@2ndquadrant.com">simon@2ndquadrant.com</a>&gt;
950   </li><li>Stephan is Stephan Szabo &lt;<a href="mailto:sszabo@megazone23.bigpanda.com">sszabo@megazone23.bigpanda.com</a>&gt;
951   </li><li>Tatsuo is Tatsuo Ishii &lt;<a href="mailto:t-ishii@sra.co.jp">t-ishii@sra.co.jp</a>&gt; of Software Research Assoc.
952   </li><li>Tom is Tom Lane &lt;<a href="mailto:tgl@sss.pgh.pa.us">tgl@sss.pgh.pa.us</a>&gt; of Red Hat
953 </li></ul>
954
955 </body>
956 </html>