]> granicus.if.org Git - postgresql/blob - doc/TODO
Reduce the alignment requirement of type "name" from int to char, and arrange
[postgresql] / doc / TODO
1 PostgreSQL TODO List
2 ====================
3 Current maintainer:     Bruce Momjian (bruce@momjian.us)
4 Last updated:           Tue Jun 24 11:53:13 EDT 2008
5
6 The most recent version of this document can be viewed at
7 http://www.postgresql.org/docs/faqs.TODO.html.
8
9 #A hyphen, "-", marks changes that will appear in the upcoming 8.4 release.#
10 #A percent sign, "%", marks items that are easier to implement.#
11
12 This list contains all known PostgreSQL bugs and feature requests. If
13 you would like to work on an item, please read the Developer's FAQ
14 first.  There is also a developer's wiki at
15 http://developer.postgresql.org.
16
17
18 Administration
19 ==============
20
21 * -Allow administrators to safely terminate individual sessions either
22   via an SQL function or SIGTERM
23 * Check for unreferenced table files created by transactions that were
24   in-progress when the server terminated abruptly
25
26   http://archives.postgresql.org/pgsql-patches/2006-06/msg00096.php
27
28 * Set proper permissions on non-system schemas during db creation
29
30   Currently all schemas are owned by the super-user because they are copied
31   from the template1 database.  However, since all objects are inherited
32   from the template database, it is not clear that setting schemas to the db
33   owner is correct.
34
35 * -Add function to report the time of the most recent server reload
36 * Allow log_min_messages to be specified on a per-module basis
37
38   This would allow administrators to see more detailed information from
39   specific sections of the backend, e.g. checkpoints, autovacuum, etc.
40   Another idea is to allow separate configuration files for each module,
41   or allow arbitrary SET commands to be passed to them.
42
43 * Simplify ability to create partitioned tables
44
45   This would allow creation of partitioned tables without requiring
46   creation of triggers or rules for INSERT/UPDATE/DELETE, and constraints
47   for rapid partition selection.  Options could include range and hash
48   partition selection.
49
50   http://archives.postgresql.org/pgsql-hackers/2007-03/msg00375.php
51   http://archives.postgresql.org/pgsql-hackers/2007-04/msg00151.php
52   http://archives.postgresql.org/pgsql-hackers/2008-01/msg00028.php
53   http://archives.postgresql.org/pgsql-hackers/2008-01/msg00248.php
54   http://archives.postgresql.org/pgsql-hackers/2008-01/msg00387.php
55   http://archives.postgresql.org/pgsql-hackers/2008-01/msg00413.php
56
57 * Allow auto-selection of partitioned tables for min/max() operations
58 * Allow more complex user/database default GUC settings
59
60   Currently ALTER USER and ALTER DATABASE support per-user and
61   per-database defaults.  Consider adding per-user-and-database
62   defaults so things like search_path can be defaulted for a
63   specific user connecting to a specific database.
64
65 * Allow custom variables to appear in pg_settings()
66 * Allow custom variable classes that can restrict who can set the values
67
68   http://archives.postgresql.org/pgsql-hackers/2006-11/msg00911.php
69
70 * Implement the SQL standard mechanism whereby REVOKE ROLE revokes only
71   the privilege granted by the invoking role, and not those granted
72   by other roles
73
74   http://archives.postgresql.org/pgsql-bugs/2007-05/msg00010.php
75
76 * Allow SSL authentication/encryption over unix domain sockets
77
78   http://archives.postgresql.org/pgsql-hackers/2007-12/msg00924.php
79
80 * Allow SSL key file permission checks to be optionally disabled when
81   sharing SSL keys with other applications
82
83   http://archives.postgresql.org/pgsql-bugs/2007-12/msg00069.php
84
85 * Allow client certificate names to be checked against the client
86   hostname
87
88   This is already implemented in
89   libpq/fe-secure.c::verify_peer_name_matches_certificate() but the code
90   is commented out.
91
92 * Configuration files
93
94         o Allow pg_hba.conf to specify host names along with IP addresses
95
96           Host name lookup could occur when the postmaster reads the
97           pg_hba.conf file, or when the backend starts.  Another
98           solution would be to reverse lookup the connection IP and
99           check that hostname against the host names in pg_hba.conf.
100           We could also then check that the host name maps to the IP
101           address.
102           http://archives.postgresql.org/pgsql-hackers/2008-06/msg00569.php
103
104         o %Allow postgresql.conf file values to be changed via an SQL
105           API, perhaps using SET GLOBAL
106         o Allow the server to be stopped/restarted via an SQL API
107         o Issue a warning if a change-on-restart-only postgresql.conf value
108           is modified  and the server config files are reloaded
109         o Consider normalizing fractions in postgresql.conf, perhaps
110           using '%'
111
112           http://archives.postgresql.org/pgsql-hackers/2007-06/msg00550.php
113
114         o Allow Kerberos to disable stripping of realms so we can
115           check the username@realm against multiple realms
116
117           http://archives.postgresql.org/pgsql-hackers/2007-11/msg00009.php
118
119         o Add functions to syntax check configuration files
120
121
122 * Tablespaces
123
124         o Allow a database in tablespace t1 with tables created in
125           tablespace t2 to be used as a template for a new database created
126           with default tablespace t2
127
128           Currently all objects in the default database tablespace must
129           have default tablespace specifications. This is because new
130           databases are created by copying directories. If you mix default
131           tablespace tables and tablespace-specified tables in the same
132           directory, creating a new database from such a mixed directory
133           would create a new database with tables that had incorrect
134           explicit tablespaces.  To fix this would require modifying
135           pg_class in the newly copied database, which we don't currently
136           do.
137
138         o Allow reporting of which objects are in which tablespaces
139
140           This item is difficult because a tablespace can contain objects
141           from multiple databases. There is a server-side function that
142           returns the databases which use a specific tablespace, so this
143           requires a tool that will call that function and connect to each
144           database to find the objects in each database for that tablespace.
145
146         o Allow WAL replay of CREATE TABLESPACE to work when the directory
147           structure on the recovery computer is different from the original
148
149         o Allow per-tablespace quotas
150
151
152 * Statistics Collector
153
154         o Allow statistics collector information to be pulled from the collector
155           process directly, rather than requiring the collector to write a
156           filesystem file twice a second?
157         o Reduce file system activity overhead of statistics file pgstat.stat
158
159           http://archives.postgresql.org/pgsql-general/2007-12/msg00106.php
160
161         o Allow statistics last vacuum/analyze execution times to be displayed
162           without requiring stats_row_level to be enabled
163
164           http://archives.postgresql.org/pgsql-docs/2007-04/msg00028.php
165
166         o Clear table counters on TRUNCATE
167
168           http://archives.postgresql.org/pgsql-hackers/2008-04/msg00169.php
169
170
171 * Point-In-Time Recovery (PITR)
172
173         o Allow a warm standby system to also allow read-only statements
174
175           http://archives.postgresql.org/pgsql-hackers/2007-03/msg00050.php
176
177         o %Create dump tool for write-ahead logs for use in determining
178           transaction id for point-in-time recovery
179
180           This is useful for checking PITR recovery.
181
182         o Allow recovery.conf to support the same syntax as
183           postgresql.conf, including quoting
184
185           http://archives.postgresql.org/pgsql-hackers/2006-12/msg00497.php
186
187         o Fix server restart problem when the server was shutdown during
188           a PITR backup
189
190           http://archives.postgresql.org/pgsql-hackers/2007-11/msg00800.php
191
192         o Recreate pg_xlog/archive_status/ if it doesn't exist after
193           restoring from a PITR backup
194
195           http://archives.postgresql.org/pgsql-hackers/2007-12/msg00487.php
196
197
198 Data Types
199 ==========
200
201 * Change NUMERIC to enforce the maximum precision
202 * Reduce storage space for small NUMERICs
203
204   http://archives.postgresql.org/pgsql-hackers/2007-02/msg01331.php
205   http://archives.postgresql.org/pgsql-patches/2007-02/msg00505.php
206   http://archives.postgresql.org/pgsql-hackers/2007-06/msg00715.php
207
208 * Fix data types where equality comparison isn't intuitive, e.g. box
209 * Add support for public SYNONYMs
210
211   http://archives.postgresql.org/pgsql-hackers/2006-03/msg00519.php
212
213 * Fix CREATE CAST on DOMAINs
214
215   http://archives.postgresql.org/pgsql-hackers/2006-05/msg00072.php
216   http://archives.postgresql.org/pgsql-hackers/2006-09/msg01681.php
217
218 * Allow domains to be cast
219
220   http://archives.postgresql.org/pgsql-hackers/2003-06/msg01206.php
221   http://archives.postgresql.org/pgsql-hackers/2007-08/msg00289.php
222
223 * Add support for SQL-standard GENERATED/IDENTITY columns
224
225   http://archives.postgresql.org/pgsql-hackers/2006-07/msg00543.php
226   http://archives.postgresql.org/pgsql-hackers/2006-08/msg00038.php
227   http://archives.postgresql.org/pgsql-hackers/2007-05/msg00344.php
228   http://archives.postgresql.org/pgsql-patches/2007-05/msg00076.php
229   http://archives.postgresql.org/pgsql-hackers/2008-02/msg00604.php
230
231 * Improve XML support
232
233   http://developer.postgresql.org/index.php/XML_Support
234
235 * Consider placing all sequences in a single table, or create a system
236   view
237
238   http://archives.postgresql.org/pgsql-hackers/2008-03/msg00008.php
239
240 * Allow the UUID type to accept non-standard formats
241
242   http://archives.postgresql.org/pgsql-hackers/2008-02/msg01214.php
243
244 * Consider a special data type for regular expressions
245
246   http://archives.postgresql.org/pgsql-hackers/2007-08/msg01067.php
247
248 * Reduce BIT data type overhead using short varlena headers
249
250   http://archives.postgresql.org/pgsql-general/2007-12/msg00273.php
251
252 * Allow xml arrays to be cast to other data types
253
254   http://archives.postgresql.org/pgsql-hackers/2007-09/msg00981.php
255   http://archives.postgresql.org/pgsql-hackers/2007-10/msg00231.php
256   http://archives.postgresql.org/pgsql-hackers/2007-11/msg00471.php
257
258 * Simplify integer cross-data-type operators
259
260   http://archives.postgresql.org/pgsql-bugs/2008-01/msg00189.php
261
262 * Allow XML to accept more liberal DOCTYPE specifications
263
264   http://archives.postgresql.org/pgsql-general/2008-02/msg00347.php
265
266 * Allow adding/renaming/removing enumerated values to an existing
267   enumerated data type
268
269   http://archives.postgresql.org/pgsql-hackers/2008-04/msg01718.php
270
271 * Dates and Times
272
273         o Allow infinite dates and intervals just like infinite timestamps
274         o Merge hardwired timezone names with the TZ database; allow either
275           kind everywhere a TZ name is currently taken
276         o Allow TIMESTAMP WITH TIME ZONE to store the original timezone
277           information, either zone name or offset from UTC
278
279           If the TIMESTAMP value is stored with a time zone name, interval
280           computations should adjust based on the time zone rules.
281           http://archives.postgresql.org/pgsql-hackers/2004-10/msg00705.php
282
283         o Fix SELECT '0.01 years'::interval, '0.01 months'::interval
284         o Add a GUC variable to allow output of interval values in ISO8601
285           format
286         o Have timestamp subtraction not call justify_hours()?
287
288           http://archives.postgresql.org/pgsql-sql/2006-10/msg00059.php
289
290         o Improve timestamptz subtraction to be DST-aware
291
292           Currently subtracting one date from another that crosses a
293           daylight savings time adjustment can return '1 day 1 hour', but
294           adding that back to the first date returns a time one hour in
295           the future.  This is caused by the adjustment of '25 hours' to
296           '1 day 1 hour', and '1 day' is the same time the next day, even
297           if daylight savings adjustments are involved.
298
299         o Fix interval display to support values exceeding 2^31 hours
300         o Add overflow checking to timestamp and interval arithmetic
301         o Extend timezone code to allow 64-bit values so we can
302           represent years beyond 2038
303
304           http://archives.postgresql.org/pgsql-hackers/2006-09/msg01363.php
305
306         o -Use LC_TIME for localized weekday/month names, rather than
307           LC_MESSAGES
308
309           http://archives.postgresql.org/pgsql-hackers/2006-11/msg00390.php
310
311         o Add ISO INTERVAL handling
312
313                   http://archives.postgresql.org/pgsql-hackers/2006-01/msg00250.php
314                   http://archives.postgresql.org/pgsql-bugs/2006-04/msg00248.php
315
316                 o Support ISO INTERVAL syntax if units cannot be determined from
317                   the string, and are supplied after the string
318
319                   The SQL standard states that the units after the string
320                   specify the units of the string, e.g. INTERVAL '2' MINUTE
321                   should return '00:02:00'. The current behavior has the units
322                   restrict the interval value to the specified unit or unit
323                   range, INTERVAL '70' SECOND returns '00:00:10'.
324
325                   For syntax that isn't uniquely ISO or PG syntax, like '1' or
326                   '1:30', treat as ISO if there is a range specification clause,
327                   and as PG if there no clause is present, e.g. interpret '1:30'
328                   MINUTE TO SECOND as '1 minute 30 seconds', and interpret
329                   '1:30' as '1 hour, 30 minutes'.
330
331                   This makes common cases like SELECT INTERVAL '1' MONTH
332                   SQL-standard results. The SQL standard supports a limited
333                   number of unit combinations and doesn't support unit names in
334                   the string. The PostgreSQL syntax is more flexible in the
335                   range of units supported, e.g. PostgreSQL supports '1 year 1
336                   hour', while the SQL standard does not.
337
338                 o Add support for year-month syntax, INTERVAL '50-6' YEAR
339                   TO MONTH
340                 o Interpret INTERVAL '1 year' MONTH as CAST (INTERVAL '1
341                   year' AS INTERVAL MONTH), and this should return '12 months'
342                 o Round or truncate values to the requested precision, e.g.
343                   INTERVAL '11 months' AS YEAR should return one or zero
344                 o Support precision, CREATE TABLE foo (a INTERVAL MONTH(3))
345
346
347 * Arrays
348
349         o Delay resolution of array expression's data type so assignment
350           coercion can be performed on empty array expressions
351         o Add support for arrays of domains
352
353           http://archives.postgresql.org/pgsql-patches/2007-05/msg00114.php
354
355         o Allow single-byte header storage for array elements
356
357
358 * Binary Data
359
360         o Improve vacuum of large objects, like contrib/vacuumlo?
361         o Add security checking for large objects
362         o Auto-delete large objects when referencing row is deleted
363
364           contrib/lo offers this functionality.
365
366         o Allow read/write into TOAST values like large objects
367
368           This requires the TOAST column to be stored EXTERNAL.
369
370         o Add API for 64-bit large object access
371
372           http://archives.postgresql.org/pgsql-hackers/2005-09/msg00781.php
373
374 * MONEY data type
375
376         * Add locale-aware MONEY type, and support multiple currencies
377
378           http://archives.postgresql.org/pgsql-general/2005-08/msg01432.php
379           http://archives.postgresql.org/pgsql-hackers/2007-03/msg01181.php
380
381         * MONEY dumps in a locale-specific format making it difficult to
382           restore to a system with a different locale
383         * Allow MONEY to be easily cast to/from other numeric data types
384
385 * Text Search
386
387         o Allow dictionaries to change the token that is passed on to
388           later dictionaries
389
390           http://archives.postgresql.org/pgsql-patches/2007-11/msg00081.php
391
392         o Consider a function-based API for '@@' searches
393
394           http://archives.postgresql.org/pgsql-hackers/2007-11/msg00511.php
395
396         o Improve text search error messages
397
398           http://archives.postgresql.org/pgsql-hackers/2007-10/msg00966.php
399           http://archives.postgresql.org/pgsql-hackers/2007-11/msg01146.php
400
401         o Consider changing error to warning for strings larger than one
402           megabyte
403
404           http://archives.postgresql.org/pgsql-bugs/2008-02/msg00190.php
405           http://archives.postgresql.org/pgsql-patches/2008-03/msg00062.php
406
407
408
409 Functions
410 =========
411
412 * Allow INET subnet tests using non-constants to be indexed
413 * Allow to_date() and to_timestamp() accept localized month names
414 * Fix to_date()-related functions to consistently issue errors
415
416   http://archives.postgresql.org/pgsql-hackers/2007-02/msg00915.php
417
418 * Add missing parameter handling in to_char()
419
420   http://archives.postgresql.org/pgsql-hackers/2005-12/msg00948.php
421
422 * Allow substring/replace() to get/set bit values
423 * Allow to_char() on interval values to accumulate the highest unit
424   requested
425
426   Some special format flag would be required to request such
427   accumulation.  Such functionality could also be added to EXTRACT.
428   Prevent accumulation that crosses the month/day boundary because of
429   the uneven number of days in a month.
430
431         o to_char(INTERVAL '1 hour 5 minutes', 'MI') => 65
432         o to_char(INTERVAL '43 hours 20 minutes', 'MI' ) => 2600
433         o to_char(INTERVAL '43 hours 20 minutes', 'WK:DD:HR:MI') => 0:1:19:20
434         o to_char(INTERVAL '3 years 5 months','MM') => 41
435
436 * Implement inlining of set-returning functions defined in SQL
437 * Allow SQL-language functions to return results from RETURNING queries
438
439   http://archives.postgresql.org/pgsql-hackers/2006-10/msg00665.php
440
441 * Allow SQL-language functions to reference parameters by parameter name
442
443   Currently SQL-language functions can only refer to dollar parameters,
444   e.g. $1
445
446 * Add SPI_gettypmod() to return the typemod for a TupleDesc
447 * Enforce typmod for function inputs, function results and parameters for
448   spi_prepare'd statements called from PLs
449
450   http://archives.postgresql.org/pgsql-hackers/2007-01/msg01403.php
451
452 * Allow holdable cursors in SPI
453 * Tighten function permission checks
454
455   http://archives.postgresql.org/pgsql-hackers/2006-12/msg00568.php
456
457 * Fix IS OF so it matches the ISO specification, and add documentation
458
459   http://archives.postgresql.org/pgsql-patches/2003-08/msg00060.php
460   http://archives.postgresql.org/pgsql-hackers/2007-02/msg00060.php
461
462 * Add missing operators for geometric data types
463
464   Some geometric types do not have the full suite of geometric operators,
465   e.g. box @> point
466
467 * Implement Boyer-Moore searching in strpos()
468
469   http://archives.postgresql.org/pgsql-patches/2007-08/msg00012.php
470
471 * Prevent malicious functions from being executed with the permissions
472   of unsuspecting users
473
474   Index functions are safe, so VACUUM and ANALYZE are safe too. 
475   Triggers, CHECK and DEFAULT expressions, and rules are still vulnerable.
476   http://archives.postgresql.org/pgsql-hackers/2008-01/msg00268.php
477
478 * Reduce memory usage of aggregates in set returning functions
479
480   http://archives.postgresql.org/pgsql-performance/2008-01/msg00031.php
481
482 * Add temporal versions of generate_series()
483
484   http://archives.postgresql.org/pgsql-hackers/2007-04/msg01180.php
485
486 * Add array_accum() and array_to_set() functions for arrays
487
488   The standards specify array_agg() and UNNEST.
489   http://archives.postgresql.org/pgsql-hackers/2007-08/msg00464.php
490
491 * Fix /contrib/ltree operator
492
493   http://archives.postgresql.org/pgsql-bugs/2007-11/msg00044.php
494
495 * Fix inconsistent precedence of =, >, and < compared to <>, >=, and <=
496
497   http://archives.postgresql.org/pgsql-bugs/2007-12/msg00145.php
498
499 * Fix regular expression bug when using complex back-references
500
501   http://archives.postgresql.org/pgsql-bugs/2007-10/msg00000.php
502
503 * Have /contrib/dblink reuse unnamed connections
504
505   http://archives.postgresql.org/pgsql-hackers/2007-10/msg00895.php
506
507 * Add SQL-standard array_agg() and unnest() array functions
508
509   http://archives.postgresql.org/pgsql-hackers/2008-01/msg01017.php
510
511 * Allow calling of a procedure outside a SELECT that can control the
512   transaction state
513
514   http://archives.postgresql.org/pgsql-hackers/2007-10/msg01375.php
515
516
517
518 Multi-Language Support
519 ======================
520
521 * Add NCHAR (as distinguished from ordinary varchar),
522 * Allow locale to be set at database creation
523
524   Currently locale can only be set during initdb.  No global tables have
525   locale-aware columns.  However, the database template used during
526   database creation might have locale-aware indexes.  The indexes would
527   need to be reindexed to match the new locale.
528
529 * Allow encoding on a per-column basis optionally using the ICU library;
530   Add CREATE COLLATE
531
532   Right now only one encoding is allowed per database.
533
534   http://archives.postgresql.org/pgsql-hackers/2005-03/msg00932.php
535   http://archives.postgresql.org/pgsql-patches/2005-08/msg00039.php
536   http://archives.postgresql.org/pgsql-patches/2005-08/msg00309.php
537   http://archives.postgresql.org/pgsql-hackers/2005-09/msg00110.php
538   http://archives.postgresql.org/pgsql-patches/2005-09/msg00020.php
539   http://archives.postgresql.org/pgsql-hackers/2005-12/msg01121.php
540   http://archives.postgresql.org/pgsql-hackers/2006-01/msg00767.php
541   http://archives.postgresql.org/pgsql-patches/2006-03/msg00233.php
542   http://archives.postgresql.org/pgsql-hackers/2006-09/msg00662.php
543   http://wiki.postgresql.org/wiki/Todo:Collate 
544   http://wiki.postgresql.org/wiki/Todo:ICU
545
546 * Support multiple simultaneous character sets, per SQL92
547 * Improve UTF8 combined character handling?
548 * Add octet_length_server() and octet_length_client()
549 * Make octet_length_client() the same as octet_length()?
550 * Fix problems with wrong runtime encoding conversion for NLS message files
551 * Add URL to more complete multi-byte regression tests
552
553   http://archives.postgresql.org/pgsql-hackers/2005-07/msg00272.php
554
555 * Fix ILIKE and regular expressions to handle case insensitivity
556   properly in multibyte encodings
557
558   http://archives.postgresql.org/pgsql-bugs/2005-10/msg00001.php
559   http://archives.postgresql.org/pgsql-patches/2005-11/msg00173.php
560
561 * Set client encoding based on the client operating system encoding
562
563   Currently client_encoding is set in postgresql.conf, which
564   defaults to the server encoding.
565   http://archives.postgresql.org/pgsql-hackers/2006-08/msg01696.php
566
567 * Change memory allocation for multi-byte functions so memory is
568   allocated inside conversion functions
569
570   Currently we preallocate memory based on worst-case usage.
571
572
573
574 Views / Rules
575 =============
576
577 * Automatically create rules on views so they are updateable, per SQL99
578
579   We can only auto-create rules for simple views.  For more complex
580   cases users will still have to write rules manually.
581
582   http://archives.postgresql.org/pgsql-hackers/2006-03/msg00586.php
583   http://archives.postgresql.org/pgsql-patches/2006-08/msg00255.php
584
585 * Add the functionality for WITH CHECK OPTION clause of CREATE VIEW
586 * Allow VIEW/RULE recompilation when the underlying tables change
587
588   Another issue is whether underlying table changes should be reflected
589   in the view, e.g. should SELECT * show additional columns if they
590   are added after the view is created.
591
592 * Make it possible to use RETURNING together with conditional DO INSTEAD
593   rules, such as for partitioning setups
594
595   http://archives.postgresql.org/pgsql-hackers/2007-09/msg00577.php
596
597 * Add the ability to automatically create materialized views
598
599   Right now materialized views require the user to create triggers on the
600   main table to keep the summary table current.  SQL syntax should be able
601   to manager the triggers and summary table automatically.  A more
602   sophisticated implementation would automatically retrieve from the
603   summary table when the main table is referenced, if possible.
604
605
606
607 SQL Commands
608 ============
609
610 * Add CORRESPONDING BY to UNION/INTERSECT/EXCEPT
611 * Add ROLLUP, CUBE, GROUPING SETS options to GROUP BY
612 * %Allow SET CONSTRAINTS to be qualified by schema/table name
613 * %Add a separate TRUNCATE permission
614
615   Currently only the owner can TRUNCATE a table because triggers are not
616   called, and the table is locked in exclusive mode.
617
618 * Allow PREPARE of cursors
619 * Allow finer control over the caching of prepared query plans
620
621   Currently queries prepared via the libpq API are planned on first
622   execute using the supplied parameters --- allow SQL PREPARE to do the
623   same.  Also, allow control over replanning prepared queries either
624   manually or automatically when statistics for execute parameters
625   differ dramatically from those used during planning.
626
627 * Improve logging of prepared transactions recovered during startup
628
629   http://archives.postgresql.org/pgsql-hackers/2006-11/msg00092.php
630
631 * Improve failure message when DROP DATABASE is used on a database that
632   has prepared transactions
633 * Allow prepared transactions with temporary tables created and dropped
634   in the same transaction, and when an ON COMMIT DELETE ROWS temporary 
635   table is accessed
636
637   http://archives.postgresql.org/pgsql-hackers/2008-03/msg00047.php
638
639 * Add a GUC variable to warn about non-standard SQL usage in queries
640 * Add SQL-standard MERGE/REPLACE/UPSERT command
641
642   MERGE is typically used to merge two tables.  REPLACE or UPSERT
643   command does UPDATE, or on failure, INSERT. This is similar to UPDATE,
644   then for unmatched rows, INSERT.  Whether concurrent access allows
645   modifications which could cause row loss is implementation independent.
646   To implement this cleanly requires that the table have a unique index
647   so duplicate checking can be easily performed.  It is possible to do it
648   without a unique index if we require the user to LOCK the table before
649   the MERGE.
650
651   http://archives.postgresql.org/pgsql-hackers/2005-11/msg00501.php
652   http://archives.postgresql.org/pgsql-hackers/2005-11/msg00536.php
653   http://archives.postgresql.org/pgsql-hackers/2008-04/msg01157.php
654   http://archives.postgresql.org/pgsql-hackers/2008-04/msg01475.php
655
656 * Add NOVICE output level for helpful messages like automatic sequence/index
657   creation
658 * Add GUC to issue notice about statements that use unjoined tables
659 * Allow EXPLAIN to identify tables that were skipped because of
660   constraint_exclusion
661 * Allow EXPLAIN output to be more easily processed by scripts, perhaps XML
662 * Enable standard_conforming_strings
663 * Make standard_conforming_strings the default in 8.5?
664
665   When this is done, backslash-quote should be prohibited in non-E''
666   strings because of possible confusion over how such strings treat
667   backslashes.  Basically, '' is always safe for a literal single
668   quote, while \' might or might not be based on the backslash
669   handling rules.
670
671 * Simplify dropping roles that have objects in several databases
672 * Allow COMMENT ON to accept an expression rather than just a string
673 * Allow the count returned by SELECT, etc to be represented as an int64
674   to allow a higher range of values
675 * Add SQL99 WITH clause to SELECT
676 * Add SQL:2003 WITH RECURSIVE (hierarchical) queries to SELECT
677
678   http://archives.postgresql.org/pgsql-hackers/2007-01/msg01375.php
679   http://archives.postgresql.org/pgsql-hackers/2008-02/msg00642.php
680   http://archives.postgresql.org/pgsql-patches/2007-03/msg00139.php
681   http://archives.postgresql.org/pgsql-hackers/2007-11/msg01334.php
682   http://archives.postgresql.org/pgsql-patches/2008-01/msg00105.php
683   http://archives.postgresql.org/pgsql-patches/2008-03/msg00327.php
684
685 * Add DEFAULT .. AS OWNER so permission checks are done as the table
686   owner
687
688   This would be useful for SERIAL nextval() calls and CHECK constraints.
689
690 * Allow DISTINCT to work in multiple-argument aggregate calls
691 * Add column to pg_stat_activity that shows the progress of long-running
692   commands like CREATE INDEX and VACUUM
693
694   http://archives.postgresql.org/pgsql-patches/2008-04/msg00203.php
695
696 * Implement SQL:2003 window functions
697 * Allow INSERT/UPDATE ... RETURNING inside a SELECT 'FROM' clause or
698   target list
699
700   http://archives.postgresql.org/pgsql-general/2006-09/msg00803.php
701   http://archives.postgresql.org/pgsql-hackers/2006-10/msg00693.php
702   http://archives.postgresql.org/pgsql-hackers/2008-06/msg00124.php
703
704 * Increase locking when DROPing objects so dependent objects cannot
705   get dropped while the DROP operation is happening
706
707   http://archives.postgresql.org/pgsql-hackers/2007-01/msg00937.php
708
709 * -Allow AS in "SELECT col AS label" to be optional in certain cases
710
711 * Allow INSERT ... DELETE ... RETURNING, namely allow the DELETE ...
712   RETURNING to supply values to the INSERT
713   http://archives.postgresql.org/pgsql-hackers/2008-02/thrd2.php#00979
714
715 * Add comments on system tables/columns using the information in
716   catalogs.sgml
717
718   Ideally the information would be pulled from the SGML file
719   automatically.
720
721 * Improve reporting of UNION type mismatches
722
723   http://archives.postgresql.org/pgsql-hackers/2007-04/msg00944.php
724   http://archives.postgresql.org/pgsql-hackers/2008-03/msg00597.php
725
726
727 * CREATE
728
729         o Allow CREATE TABLE AS to determine column lengths for complex
730           expressions like SELECT col1 || col2
731
732         o Have WITH CONSTRAINTS also create constraint indexes
733
734           http://archives.postgresql.org/pgsql-patches/2007-04/msg00149.php
735
736         o Have CONSTRAINT cname NOT NULL record the contraint name
737
738           Right now pg_attribute.attnotnull records the NOT NULL status
739           of the column, but does not record the contraint name
740
741         o Prevent concurrent CREATE TABLE table1 from sometimes returning
742           a cryptic error message
743
744           http://archives.postgresql.org/pgsql-bugs/2007-10/msg00169.php
745
746         o Add CREATE SCHEMA ... LIKE that copies a schema
747
748
749
750 * UPDATE
751         o Allow UPDATE tab SET ROW (col, ...) = (SELECT...)
752
753           http://archives.postgresql.org/pgsql-hackers/2006-07/msg01306.php
754           http://archives.postgresql.org/pgsql-hackers/2007-03/msg00865.php
755           http://archives.postgresql.org/pgsql-patches/2007-04/msg00315.php
756           http://archives.postgresql.org/pgsql-patches/2008-03/msg00237.php
757
758         o Research self-referential UPDATEs that see inconsistent row versions
759           in read-committed mode
760
761           http://archives.postgresql.org/pgsql-hackers/2007-05/msg00507.php
762           http://archives.postgresql.org/pgsql-hackers/2007-06/msg00016.php
763
764         o Allow GLOBAL temporary tables to exist as empty by default in
765           all sessions
766
767           http://archives.postgresql.org/pgsql-hackers/2007-07/msg00006.php
768
769
770 * ALTER
771
772         o Have ALTER TABLE RENAME rename SERIAL sequence names
773
774           http://archives.postgresql.org/pgsql-hackers/2008-03/msg00008.php
775
776         o Have ALTER SEQUENCE RENAME rename the sequence name stored
777           in the sequence table
778
779           http://archives.postgresql.org/pgsql-bugs/2007-09/msg00092.php
780           http://archives.postgresql.org/pgsql-bugs/2007-10/msg00007.php
781           http://archives.postgresql.org/pgsql-hackers/2008-03/msg00008.php
782
783         o Add ALTER DOMAIN to modify the underlying data type
784         o %Allow ALTER TABLE ... ALTER CONSTRAINT ... RENAME
785
786           http://archives.postgresql.org/pgsql-patches/2006-02/msg00168.php
787
788         o %Allow ALTER TABLE to change constraint deferrability and actions
789         o Add missing object types for ALTER ... SET SCHEMA
790         o Allow ALTER TABLESPACE to move to different directories
791         o Allow databases to be moved to different tablespaces
792         o Allow moving system tables to other tablespaces, where possible
793
794           Currently non-global system tables must be in the default database
795           tablespace. Global system tables can never be moved.
796
797         o -Prevent parent tables from altering or dropping constraints
798           like CHECK that are inherited by child tables unless CASCADE
799           is used
800         o -Prevent child tables from altering or dropping constraints
801           like CHECK that were inherited from the parent table
802         o Have ALTER INDEX update the name of a constraint using that index
803         o Add ALTER TABLE RENAME CONSTRAINT, update index name also
804         o Allow column display reordering by recording a display,
805           storage, and permanent id for every column?
806
807           http://archives.postgresql.org/pgsql-hackers/2006-12/msg00782.php
808
809         o Allow an existing index to be marked as a table's primary key
810
811           http://archives.postgresql.org/pgsql-hackers/2008-04/msg00500.php
812
813
814 * CLUSTER
815
816         o Automatically maintain clustering on a table
817
818           This might require some background daemon to maintain clustering
819           during periods of low usage. It might also require tables to be only
820           partially filled for easier reorganization.  Another idea would
821           be to create a merged heap/index data file so an index lookup would
822           automatically access the heap data too.  A third idea would be to
823           store heap rows in hashed groups, perhaps using a user-supplied
824           hash function.
825           http://archives.postgresql.org/pgsql-performance/2004-08/msg00349.php
826
827         o %Add default clustering to system tables
828
829           To do this, determine the ideal cluster index for each system
830           table and set the cluster setting during initdb.
831
832         o %Add VERBOSE option to report tables as they are processed,
833           like VACUUM VERBOSE
834
835
836 * COPY
837
838         o Allow COPY to report error lines and continue
839
840           This requires the use of a savepoint before each COPY line is
841           processed, with ROLLBACK on COPY failure.
842           http://archives.postgresql.org/pgsql-hackers/2007-12/msg00572.php
843
844         o Allow COPY on a newly-created table to skip WAL logging
845
846           On crash recovery, the table involved in the COPY would
847           be removed or have its heap and index files truncated.  One
848           issue is that no other backend should be able to add to
849           the table at the same time, which is something that is
850           currently allowed.  This currently is done if the table is
851           created inside the same transaction block as the COPY because
852           no other backends can see the table.
853
854         o Consider using a ring buffer for COPY FROM
855
856           http://archives.postgresql.org/pgsql-patches/2008-02/msg00140.php
857           http://archives.postgresql.org/pgsql-hackers/2008-02/msg01080.php
858
859         o Allow COPY FROM to create index entries in bulk
860
861           http://archives.postgresql.org/pgsql-hackers/2008-02/msg00811.php
862
863         o Allow COPY in CSV mode to control whether a quoted zero-length
864           string is treated as NULL
865
866           Currently this is always treated as a zero-length string,
867           which generates an error when loading into an integer column
868           http://archives.postgresql.org/pgsql-hackers/2007-07/msg00905.php
869
870         o Impove COPY performance
871
872           http://archives.postgresql.org/pgsql-hackers/2008-02/msg00954.php
873
874         o Allow COPY to report errors sooner
875
876          http://archives.postgresql.org/pgsql-hackers/2008-04/msg01169.php
877
878
879
880 * GRANT/REVOKE
881
882         o Allow column-level privileges
883         o %Allow GRANT/REVOKE permissions to be applied to all schema objects
884           with one command
885
886           The proposed syntax is:
887                 GRANT SELECT ON ALL TABLES IN public TO phpuser;
888                 GRANT SELECT ON NEW TABLES IN public TO phpuser;
889
890         o Allow GRANT/REVOKE permissions to be inherited by objects based on
891           schema permissions
892
893         o Allow SERIAL sequences to inherit permissions from the base table?
894
895
896 * CURSOR
897
898         o Prevent DROP TABLE from dropping a row referenced by its own open
899           cursor?
900
901
902 * INSERT
903
904         o Allow INSERT/UPDATE of the system-generated oid value for a row
905         o In rules, allow VALUES() to contain a mixture of 'old' and 'new'
906           references
907
908
909 * SHOW/SET
910
911         o Add SET PERFORMANCE_TIPS option to suggest INDEX, VACUUM, VACUUM
912           ANALYZE, and CLUSTER
913
914
915 * LISTEN/NOTIFY
916
917         o Allow LISTEN/NOTIFY to store info in memory rather than tables?
918
919           Currently LISTEN/NOTIFY information is stored in pg_listener. 
920           Storing such information in memory would improve performance.
921
922         o Add optional textual message to NOTIFY
923
924           This would allow an informational message to be added to the notify
925           message, perhaps indicating the row modified or other custom
926           information.
927
928         o Allow multiple identical NOTIFY events to always be communicated
929           to the client, rather than sent as a single notification to the
930           listener
931
932           http://archives.postgresql.org/pgsql-general/2008-01/msg00057.php
933
934         o Allow NOTIFY in rules involving conditionals
935         o Improve LISTEN concurrency
936
937           http://archives.postgresql.org/pgsql-hackers/2008-02/msg01106.php
938
939
940
941 Referential Integrity
942 =====================
943
944 * Add MATCH PARTIAL referential integrity
945 * Change foreign key constraint for array -> element to mean element
946   in array?
947 * Fix problem when cascading referential triggers make changes on
948   cascaded tables, seeing the tables in an intermediate state
949
950   http://archives.postgresql.org/pgsql-hackers/2005-09/msg00174.php
951   http://archives.postgresql.org/pgsql-hackers/2005-09/msg00174.php
952
953 * Allow DEFERRABLE and end-of-statement UNIQUE constraints?
954
955   This would allow UPDATE tab SET col = col + 1 to work if col has
956   a unique index.  Currently, uniqueness checks are done while the
957   command is being executed, rather than at the end of the statement
958   or transaction.
959   http://people.planetpostgresql.org/greg/index.php?/archives/2006/06/10.html
960   http://archives.postgresql.org/pgsql-hackers/2006-09/msg01458.php
961
962 * Optimize referential integrity checks
963
964   http://archives.postgresql.org/pgsql-performance/2005-10/msg00458.php
965   http://archives.postgresql.org/pgsql-hackers/2007-04/msg00744.php
966
967
968 Server-Side Languages
969 =====================
970
971 * PL/pgSQL
972         o Fix RENAME to work on variables other than OLD/NEW
973
974           http://archives.postgresql.org/pgsql-hackers/2002-03/msg00591.php
975           http://archives.postgresql.org/pgsql-hackers/2007-01/msg01615.php
976           http://archives.postgresql.org/pgsql-hackers/2007-01/msg01587.php
977
978         o Allow function parameters to be passed by name,
979           get_employee_salary(12345 AS emp_id, 2001 AS tax_year)
980         o Allow handling of %TYPE arrays, e.g. tab.col%TYPE[]
981         o Allow listing of record column names, and access to
982           record columns via variables, e.g. columns := r.(*),
983           tval2 := r.(colname)
984
985           http://archives.postgresql.org/pgsql-patches/2005-07/msg00458.php
986           http://archives.postgresql.org/pgsql-patches/2006-05/msg00302.php
987           http://archives.postgresql.org/pgsql-patches/2006-06/msg00031.php
988
989         o Add support for SCROLL cursors
990         o Add support for WITH HOLD cursors
991         o Allow row and record variables to be set to NULL constants,
992           and allow NULL tests on such variables
993
994           Because a row is not scalar, do not allow assignment
995           from NULL-valued scalars.
996
997           http://archives.postgresql.org/pgsql-hackers/2006-10/msg00070.php
998
999         o Review handling of MOVE and FETCH
1000
1001           http://archives.postgresql.org/pgsql-patches/2007-04/msg00527.php
1002
1003         o Improve logic of determining if an identifier is a a
1004           variable or column name
1005
1006           http://archives.postgresql.org/pgsql-hackers/2007-07/msg00436.php
1007
1008         o Consider keeping seperate cached copies when search_path changes
1009
1010           http://archives.postgresql.org/pgsql-hackers/2008-01/msg01009.php
1011
1012         o -Add CASE capability to language (already in SQL)
1013
1014           http://archives.postgresql.org/pgsql-hackers/2008-01/msg00696.php
1015
1016
1017
1018
1019 * Other
1020         o Add table function support to pltcl, plpythonu
1021         o Add support for polymorphic arguments and return types to
1022           languages other than PL/PgSQL
1023         o Add capability to create and call PROCEDURES
1024         o Add support for OUT and INOUT parameters to languages other
1025           than PL/PgSQL
1026         o Add PL/PythonU tracebacks
1027
1028           http://archives.postgresql.org/pgsql-patches/2006-02/msg00288.php
1029
1030         o Allow data to be passed in native language formats, rather
1031           than only text
1032
1033           http://archives.postgresql.org/pgsql-hackers/2007-05/msg00289.php
1034
1035         o Add ability to obfuscate function bodies
1036
1037           http://archives.postgresql.org/pgsql-patches/2008-01/msg00125.php
1038
1039
1040
1041 Clients
1042 =======
1043
1044 * Have pg_ctl look at PGHOST in case it is a socket directory?
1045 * Allow pg_ctl to work properly with configuration files located outside
1046   the PGDATA directory
1047
1048   pg_ctl can not read the pid file because it isn't located in the
1049   config directory but in the PGDATA directory.  The solution is to
1050   allow pg_ctl to read and understand postgresql.conf to find the
1051   data_directory value.
1052
1053 * Add a function like pg_get_indexdef() that report more detailed index
1054   information
1055
1056   http://archives.postgresql.org/pgsql-bugs/2007-12/msg00166.php
1057
1058 * psql
1059         o Have psql show current values for a sequence
1060         o Move psql backslash database information into the backend, use
1061           mnemonic commands?
1062
1063           This would allow non-psql clients to pull the same information out
1064           of the database as psql.
1065           http://archives.postgresql.org/pgsql-hackers/2004-01/msg00191.php
1066
1067         o Make psql's \d commands more consistent
1068
1069           http://archives.postgresql.org/pgsql-hackers/2004-11/msg00014.php
1070           http://archives.postgresql.org/pgsql-hackers/2004-11/msg00014.php
1071
1072         o Consistently display privilege information for all objects in psql
1073         o Add auto-expanded mode so expanded output is used if the row
1074           length is wider than the screen width.
1075
1076           Consider using auto-expanded mode for backslash commands like \df+.
1077
1078         o Prevent tab completion of SET TRANSACTION from querying the
1079           database and therefore preventing the transaction isolation
1080           level from being set.
1081
1082           Currently SET <tab> causes a database lookup to check all
1083           supported session variables.  This query causes problems
1084           because setting the transaction isolation level must be the
1085           first statement of a transaction.
1086
1087         o Add a \set variable to control whether \s displays line numbers
1088
1089           Another option is to add \# which lists line numbers, and
1090           allows command execution.
1091
1092           http://archives.postgresql.org/pgsql-hackers/2006-12/msg00255.php
1093
1094         o Prevent escape string warnings when object names have
1095           backslashes
1096
1097           http://archives.postgresql.org/pgsql-hackers/2008-01/msg00227.php
1098
1099         o Have \d show foreign keys that reference a table's primary key
1100
1101           http://archives.postgresql.org/pgsql-hackers/2007-04/msg00424.php
1102
1103         o Have \d show child tables that inherit from the specified parent
1104         o -Have \l+ show database size, if permissions allow
1105
1106           Ideally it will not generate an error for invalid permissions
1107
1108         o Include the symbolic SQLSTATE name in verbose error reports
1109
1110           http://archives.postgresql.org/pgsql-general/2007-09/msg00438.php
1111
1112         o -Improve display of enums to show valid enum values
1113         o Add prompt escape to display the client and server versions
1114
1115
1116 * pg_dump / pg_restore
1117         o %Add dumping of comments on index columns and composite type columns
1118         o %Add full object name to the tag field.  eg. for operators we need
1119           '=(integer, integer)', instead of just '='.
1120         o Add pg_dumpall custom format dumps?
1121         o Allow selection of individual object(s) of all types, not just
1122           tables
1123         o In a selective dump, allow dumping of an object and all its
1124           dependencies
1125         o Add options like pg_restore -l and -L to pg_dump
1126         o Stop dumping CASCADE on DROP TYPE commands in clean mode
1127         o Allow pg_dump --clean to drop roles that own objects or have
1128           privileges
1129         o Change pg_dump so that a comment on the dumped database is
1130           applied to the loaded database, even if the database has a
1131           different name.  This will require new backend syntax, perhaps
1132           COMMENT ON CURRENT DATABASE.
1133         o Remove unnecessary function pointer abstractions in pg_dump source
1134           code
1135         o Allow pg_dump to utilize multiple CPUs and I/O channels by dumping
1136           multiple objects simultaneously
1137
1138           The difficulty with this is getting multiple dump processes to
1139           produce a single dump output file.  It also would require
1140           several sessions to share the same snapshot.
1141           http://archives.postgresql.org/pgsql-hackers/2008-02/msg00205.php
1142
1143         o Allow pg_restore to utilize multiple CPUs and I/O channels by
1144           restoring multiple objects simultaneously
1145
1146           This might require a pg_restore flag to indicate how many
1147           simultaneous operations should be performed.  Only pg_dump's
1148           -Fc format has the necessary dependency information.
1149           http://archives.postgresql.org/pgsql-hackers/2008-02/msg00963.php
1150
1151         o To better utilize resources, allow pg_restore to check foreign
1152           keys simultaneously, where possible
1153         o Allow pg_restore to create all indexes of a table
1154           concurrently, via a single heap scan
1155
1156           This requires a pg_dump -Fc file because that format contains
1157           the required dependency information.
1158           http://archives.postgresql.org/pgsql-general/2007-05/msg01274.php
1159
1160         o Allow pg_restore to load different parts of the COPY data
1161           simultaneously
1162         o -Prevent pg_dump/pg_restore from being affected by
1163           statement_timeout
1164
1165           Using psql to restore a pg_dump dump is also affected.
1166
1167         o Remove pre-7.3 pg_dump code that assumes pg_depend does not exit
1168         o Allow pre/data/post files when schema and data are dumped
1169           separately, for performance reasons
1170
1171           http://archives.postgresql.org/pgsql-hackers/2008-02/msg00205.php
1172
1173
1174
1175 * ecpg
1176         o Docs
1177
1178           Document differences between ecpg and the SQL standard and
1179           information about the Informix-compatibility module.
1180
1181         o Solve cardinality > 1 for input descriptors / variables?
1182         o Add a semantic check level, e.g. check if a table really exists
1183         o fix handling of DB attributes that are arrays
1184         o Use backend PREPARE/EXECUTE facility for ecpg where possible
1185         o Implement SQLDA
1186         o Fix nested C comments
1187         o %sqlwarn[6] should be 'W' if the PRECISION or SCALE value specified
1188         o Make SET CONNECTION thread-aware, non-standard?
1189         o Allow multidimensional arrays
1190         o Add internationalized message strings
1191         o Implement COPY FROM STDIN
1192
1193
1194 * libpq
1195         o Add PQescapeIdentifierConn()
1196         o Prevent PQfnumber() from lowercasing unquoted the column name
1197
1198           PQfnumber() should never have been doing lowercasing, but
1199           historically it has so we need a way to prevent it
1200
1201         o Allow statement results to be automatically batched to the client
1202
1203           Currently all statement results are transferred to the libpq
1204           client before libpq makes the results available to the
1205           application.  This feature would allow the application to make
1206           use of the first result rows while the rest are transferred, or
1207           held on the server waiting for them to be requested by libpq.
1208           One complexity is that a statement like SELECT 1/col could error
1209           out mid-way through the result set.
1210
1211         o Consider disallowing multiple queries in PQexec() as an
1212           additional barrier to SQL injection attacks
1213
1214           http://archives.postgresql.org/pgsql-hackers/2007-01/msg00184.php
1215
1216         o Add PQexecf() that allows complex parameter substitution
1217
1218           http://archives.postgresql.org/pgsql-hackers/2007-03/msg01803.php
1219
1220         o Add SQLSTATE severity to PGconn return status
1221
1222           http://archives.postgresql.org/pgsql-interfaces/2007-11/msg00015.php
1223
1224
1225 Triggers
1226 ========
1227
1228 * Add deferred trigger queue file
1229
1230   Right now all deferred trigger information is stored in backend
1231   memory.  This could exhaust memory for very large trigger queues.
1232   This item involves dumping large queues into files, or doing some
1233   kind of join to process all the triggers, or some bulk operation.
1234   http://archives.postgresql.org/pgsql-hackers/2008-05/msg00876.php
1235
1236 * Allow triggers to be disabled in only the current session.
1237
1238   This is currently possible by starting a multi-statement transaction,
1239   modifying the system tables, performing the desired SQL, restoring the
1240   system tables, and committing the transaction.  ALTER TABLE ...
1241   TRIGGER requires a table lock so it is not ideal for this usage.
1242
1243 * With disabled triggers, allow pg_dump to use ALTER TABLE ADD FOREIGN KEY
1244
1245   If the dump is known to be valid, allow foreign keys to be added
1246   without revalidating the data.
1247
1248 * Allow statement-level triggers to access modified rows
1249 * Support triggers on columns
1250
1251   http://archives.postgresql.org/pgsql-patches/2005-07/msg00107.php
1252
1253 * Allow AFTER triggers on system tables
1254
1255   System tables are modified in many places in the backend without going
1256   through the executor and therefore not causing triggers to fire. To
1257   complete this item, the functions that modify system tables will have
1258   to fire triggers.
1259
1260 * Tighten trigger permission checks
1261
1262   http://archives.postgresql.org/pgsql-hackers/2006-12/msg00564.php
1263
1264 * Allow BEFORE INSERT triggers on views
1265
1266   http://archives.postgresql.org/pgsql-general/2007-02/msg01466.php
1267
1268 * -Add ability to trigger on TRUNCATE
1269 * Add database and transaction-level triggers
1270
1271   http://archives.postgresql.org/pgsql-hackers/2008-03/msg00451.php
1272
1273
1274
1275 Indexes
1276 =======
1277
1278 * Add UNIQUE capability to non-btree indexes
1279 * Prevent index uniqueness checks when UPDATE does not modify the column
1280
1281   Uniqueness (index) checks are done when updating a column even if the
1282   column is not modified by the UPDATE.
1283
1284 * Allow the creation of on-disk bitmap indexes which can be quickly
1285   combined with other bitmap indexes
1286
1287   Such indexes could be more compact if there are only a few distinct values.
1288   Such indexes can also be compressed.  Keeping such indexes updated can be
1289   costly.
1290
1291   http://archives.postgresql.org/pgsql-patches/2005-07/msg00512.php
1292   http://archives.postgresql.org/pgsql-hackers/2006-12/msg01107.php
1293   http://archives.postgresql.org/pgsql-hackers/2007-03/msg00265.php
1294   http://archives.postgresql.org/pgsql-hackers/2007-03/msg01214.php
1295   http://archives.postgresql.org/pgsql-patches/2007-05/msg00013.php
1296   http://archives.postgresql.org/pgsql-hackers/2007-07/msg00741.php
1297
1298 * Allow accurate statistics to be collected on indexes with more than
1299   one column or expression indexes, perhaps using per-index statistics
1300
1301   http://archives.postgresql.org/pgsql-performance/2006-10/msg00222.php
1302   http://archives.postgresql.org/pgsql-hackers/2007-03/msg01131.php
1303
1304 * Consider increasing the default and maximum number of statistics targets,
1305   and reduce statistics target overhead
1306
1307   Also consider having a larger statistics target for indexed columns
1308   and expression indexes.
1309   http://archives.postgresql.org/pgsql-general/2007-05/msg01228.php
1310   http://archives.postgresql.org/pgsql-general/2007-06/msg00542.php
1311   http://archives.postgresql.org/pgsql-hackers/2008-01/msg01066.php
1312   http://archives.postgresql.org/pgsql-hackers/2008-03/msg00188.php
1313
1314 * Consider smaller indexes that record a range of values per heap page,
1315   rather than having one index entry for every heap row
1316
1317   This is useful if the heap is clustered by the indexed values.
1318   http://archives.postgresql.org/pgsql-hackers/2006-12/msg00341.php
1319   http://archives.postgresql.org/pgsql-hackers/2007-02/msg01264.php
1320   http://archives.postgresql.org/pgsql-hackers/2007-03/msg00465.php
1321   http://archives.postgresql.org/pgsql-patches/2007-03/msg00163.php
1322   http://archives.postgresql.org/pgsql-hackers/2007-08/msg00014.php
1323   http://archives.postgresql.org/pgsql-hackers/2007-08/msg00487.php
1324   http://archives.postgresql.org/pgsql-hackers/2008-04/msg01589.php
1325
1326 * Add REINDEX CONCURRENTLY, like CREATE INDEX CONCURRENTLY
1327
1328   This is difficult because you must upgrade to an exclusive table lock
1329   to replace the existing index file.  CREATE INDEX CONCURRENTLY does not
1330   have this complication.  This would allow index compaction without
1331   downtime.
1332   http://archives.postgresql.org/pgsql-performance/2007-08/msg00289.php
1333
1334 * Allow multiple indexes to be created concurrently, ideally via a
1335   single heap scan, and have pg_restore use it
1336
1337 * Consider sorting entries before inserting into btree index
1338
1339   http://archives.postgresql.org/pgsql-general/2008-01/msg01010.php
1340
1341 * Allow index scans to return matching index keys, not just the matching
1342   heap locations
1343
1344   http://archives.postgresql.org/pgsql-hackers/2008-04/msg01657.php
1345
1346
1347
1348 * Inheritance
1349
1350         o Allow inherited tables to inherit indexes, UNIQUE constraints,
1351           and primary/foreign keys
1352         o Honor UNIQUE INDEX on base column in INSERTs/UPDATEs
1353           on inherited table, e.g.  INSERT INTO inherit_table
1354           (unique_index_col) VALUES (dup) should fail
1355
1356           The main difficulty with this item is the problem of
1357           creating an index that can span multiple tables.
1358
1359         o Allow SELECT ... FOR UPDATE on inherited tables
1360         o Require all CHECK constraints to be inherited
1361
1362           http://archives.postgresql.org/pgsql-bugs/2007-04/msg00026.php
1363
1364         o Add checks to prevent a CREATE RULE views on inherited tables
1365
1366           http://archives.postgresql.org/pgsql-general/2008-02/msg01420.php
1367           http://archives.postgresql.org/pgsql-general/2008-03/msg00077.php
1368
1369
1370 * GIST
1371
1372         o Add more GIST index support for geometric data types
1373         o Allow GIST indexes to create certain complex index types, like
1374           digital trees (see Aoki)
1375
1376
1377 * Hash
1378
1379           http://archives.postgresql.org/pgsql-hackers/2007-09/msg00051.php
1380
1381         o Pack hash index buckets onto disk pages more efficiently
1382
1383           Currently only one hash bucket can be stored on a page. Ideally
1384           several hash buckets could be stored on a single page and greater
1385           granularity used for the hash algorithm.
1386
1387           http://archives.postgresql.org/pgsql-hackers/2004-06/msg00168.php
1388
1389         o Consider sorting hash buckets so entries can be found using a
1390           binary search, rather than a linear scan
1391         o In hash indexes, consider storing the hash value with or instead
1392           of the key itself
1393         o Add WAL logging for crash recovery
1394         o Allow multi-column hash indexes
1395         o -During index creation, pre-sort the tuples to improve build speed
1396
1397 Sorting
1398 =======
1399 * Consider using hash buckets to do DISTINCT, rather than sorting
1400
1401   This would be beneficial when there are few distinct values.  This is
1402   already used by GROUP BY.
1403
1404 * Consider whether duplicate keys should be sorted by block/offset
1405
1406   http://archives.postgresql.org/pgsql-hackers/2008-03/msg00558.php
1407
1408 * -Avoid tuple some tuple copying in sort routines
1409 * Consider being smarter about memory and external files used during
1410   sorts
1411
1412   http://archives.postgresql.org/pgsql-hackers/2007-11/msg01101.php
1413   http://archives.postgresql.org/pgsql-hackers/2007-12/msg00045.php
1414
1415 * Consider detoasting keys before sorting
1416
1417
1418 Fsync
1419 =====
1420
1421 * Determine optimal fdatasync/fsync, O_SYNC/O_DSYNC options
1422
1423   Ideally this requires a separate test program that can be run
1424   at initdb time or optionally later.  Consider O_SYNC when
1425   O_DIRECT exists.
1426
1427 * Add program to test if fsync has a delay compared to non-fsync
1428 * Consider sorting writes during checkpoint
1429
1430   http://archives.postgresql.org/pgsql-hackers/2007-06/msg00541.php
1431
1432
1433
1434 Cache Usage
1435 ===========
1436
1437 * Speed up COUNT(*)
1438
1439   We could use a fixed row count and a +/- count to follow MVCC
1440   visibility rules, or a single cached value could be used and
1441   invalidated if anyone modifies the table.  Another idea is to
1442   get a count directly from a unique index, but for this to be
1443   faster than a sequential scan it must avoid access to the heap
1444   to obtain tuple visibility information.
1445
1446 * Provide a way to calculate an "estimated COUNT(*)"
1447
1448   Perhaps by using the optimizer's cardinality estimates or random
1449   sampling.
1450
1451   http://archives.postgresql.org/pgsql-hackers/2005-11/msg00943.php
1452
1453 * Allow data to be pulled directly from indexes
1454
1455   Currently indexes do not have enough tuple visibility information
1456   to allow data to be pulled from the index without also accessing
1457   the heap.  One way to allow this is to set a bit on index tuples
1458   to indicate if a tuple is currently visible to all transactions
1459   when the first valid heap lookup happens.  This bit would have to
1460   be cleared when a heap tuple is expired.
1461
1462   Another idea is to maintain a bitmap of heap pages where all rows
1463   are visible to all backends, and allow index lookups to reference
1464   that bitmap to avoid heap lookups, perhaps the same bitmap we might
1465   add someday to determine which heap pages need vacuuming.  Frequently
1466   accessed bitmaps would have to be stored in shared memory.  One 8k
1467   page of bitmaps could track 512MB of heap pages.
1468
1469   A third idea would be for a heap scan to check if all rows are visible
1470   and if so set a per-table flag which can be checked by index scans. 
1471   Any change to the table would have to clear the flag.  To detect
1472   changes during the heap scan a counter could be set at the start and
1473   checked at the end --- if it is the same, the table has not been
1474   modified --- any table change would increment the counter.
1475
1476   http://archives.postgresql.org/pgsql-patches/2007-10/msg00166.php
1477   http://archives.postgresql.org/pgsql-patches/2008-01/msg00049.php
1478
1479 * Consider automatic caching of statements at various levels:
1480
1481         o Parsed query tree
1482         o Query execute plan
1483         o Query results
1484         http://archives.postgresql.org/pgsql-hackers/2008-04/msg00823.php
1485
1486 * Consider increasing internal areas when shared buffers is increased
1487
1488   http://archives.postgresql.org/pgsql-hackers/2005-10/msg01419.php
1489
1490 * Consider decreasing the amount of memory used by PrivateRefCount
1491
1492   http://archives.postgresql.org/pgsql-hackers/2006-11/msg00797.php
1493   http://archives.postgresql.org/pgsql-hackers/2007-01/msg00752.php
1494
1495 * Consider allowing higher priority queries to have referenced buffer
1496   cache pages stay in memory longer
1497
1498   http://archives.postgresql.org/pgsql-hackers/2007-11/msg00562.php
1499
1500
1501
1502 Vacuum
1503 ======
1504
1505 * Improve speed with indexes
1506
1507   For large table adjustments during VACUUM FULL, it is faster to cluster
1508   or reindex rather than update the index.  Also, index updates can bloat
1509   the index.
1510
1511   http://archives.postgresql.org/pgsql-hackers/2007-03/msg00024.php
1512   http://archives.postgresql.org/pgsql-performance/2007-05/msg00296.php
1513   http://archives.postgresql.org/pgsql-hackers/2007-08/msg00307.php
1514
1515 * Auto-fill the free space map by scanning the buffer cache or by
1516   checking pages written by the background writer
1517
1518   http://archives.postgresql.org/pgsql-hackers/2006-02/msg01125.php
1519   http://archives.postgresql.org/pgsql-hackers/2006-03/msg00011.php
1520
1521 * Create a bitmap of pages that need vacuuming
1522
1523   Instead of sequentially scanning the entire table, have the background
1524   writer or some other process record pages that have expired rows, then
1525   VACUUM can look at just those pages rather than the entire table.  In
1526   the event of a system crash, the bitmap would probably be invalidated.
1527   One complexity is that index entries still have to be vacuumed, and
1528   doing this without an index scan (by using the heap values to find the
1529   index entry) might be slow and unreliable, especially for user-defined
1530   index functions.
1531
1532   http://archives.postgresql.org/pgsql-hackers/2006-12/msg01188.php
1533   http://archives.postgresql.org/pgsql-hackers/2007-01/msg00121.php
1534   http://archives.postgresql.org/pgsql-patches/2007-03/msg00508.php
1535   http://archives.postgresql.org/pgsql-patches/2007-04/msg00347.php
1536   http://archives.postgresql.org/pgsql-hackers/2007-11/msg00156.php
1537   http://archives.postgresql.org/pgsql-hackers/2008-03/msg00546.php
1538   http://archives.postgresql.org/pgsql-hackers/2008-04/msg00416.php
1539
1540 * Allow FSM to return free space toward the beginning of the heap file,
1541   in hopes that empty pages at the end can be truncated by VACUUM
1542 * Allow FSM page return free space based on table clustering, to assist
1543   in maintaining clustering?
1544 * -Improve dead row detection during multi-statement transactions usage
1545
1546   http://archives.postgresql.org/pgsql-patches/2007-03/msg00358.php
1547
1548 * Consider a more compact data representation for dead tuples
1549
1550   http://archives.postgresql.org/pgsql-patches/2007-05/msg00143.php
1551
1552
1553 * Auto-vacuum
1554
1555         o %Issue log message to suggest VACUUM FULL if a table is nearly
1556           empty?
1557         o Improve control of auto-vacuum
1558
1559           http://archives.postgresql.org/pgsql-hackers/2006-12/msg00876.php
1560
1561         o Prevent long-lived temporary tables from causing frozen-xid
1562           advancement starvation
1563
1564           The problem is that autovacuum cannot vacuum them to set frozen xids;
1565           only the session that created them can do that.
1566           http://archives.postgresql.org/pgsql-general/2007-06/msg01645.php
1567
1568         o Store per-table autovacuum settings in pg_class.reloptions.
1569
1570           http://archives.postgresql.org/pgsql-hackers/2007-02/msg01440.php
1571           http://archives.postgresql.org/pgsql-hackers/2008-01/msg00724.php
1572
1573         o Prevent autovacuum from running if an old transaction is still
1574           running from the last vacuum
1575
1576           http://archives.postgresql.org/pgsql-hackers/2007-11/msg00899.php
1577
1578
1579
1580 Locking
1581 =======
1582
1583 * Fix priority ordering of read and write light-weight locks (Neil)
1584
1585   http://archives.postgresql.org/pgsql-hackers/2004-11/msg00893.php
1586   http://archives.postgresql.org/pgsql-hackers/2004-11/msg00905.php
1587
1588 * Fix problem when multiple subtransactions of the same outer transaction
1589   hold different types of locks, and one subtransaction aborts
1590
1591   http://archives.postgresql.org/pgsql-hackers/2006-11/msg01011.php
1592   http://archives.postgresql.org/pgsql-hackers/2006-12/msg00001.php
1593   http://archives.postgresql.org/pgsql-hackers/2007-02/msg00435.php
1594   http://archives.postgresql.org/pgsql-hackers/2007-05/msg00773.php
1595
1596 * Allow UPDATEs on only non-referential integrity columns not to conflict
1597   with referential integrity locks
1598
1599   http://archives.postgresql.org/pgsql-hackers/2007-02/msg00073.php
1600
1601 * Add idle_in_transaction_timeout GUC so locks are not held for long
1602   periods of time
1603
1604 * Improve deadlock detection when a page cleaning lock conflicts
1605   with a shared buffer that is pinned
1606
1607   http://archives.postgresql.org/pgsql-bugs/2008-01/msg00138.php
1608   http://archives.postgresql.org/pgsql-hackers/2008-01/msg00873.php
1609   http://archives.postgresql.org/pgsql-committers/2008-01/msg00365.php
1610
1611 * Detect deadlocks involving LockBufferForCleanup()
1612
1613   http://archives.postgresql.org/pgsql-hackers/2008-01/msg00873.php
1614
1615
1616
1617 Startup Time Improvements
1618 =========================
1619
1620 * Experiment with multi-threaded backend for backend creation
1621
1622   This would prevent the overhead associated with process creation. Most
1623   operating systems have trivial process creation time compared to
1624   database startup overhead, but a few operating systems (Win32,
1625   Solaris) might benefit from threading.  Also explore the idea of
1626   a single session using multiple threads to execute a statement faster.
1627
1628
1629
1630 Write-Ahead Log
1631 ===============
1632
1633 * Eliminate need to write full pages to WAL before page modification
1634
1635   Currently, to protect against partial disk page writes, we write
1636   full page images to WAL before they are modified so we can correct any
1637   partial page writes during recovery.  These pages can also be
1638   eliminated from point-in-time archive files.
1639   http://archives.postgresql.org/pgsql-hackers/2002-06/msg00655.php
1640
1641         o  When off, write CRC to WAL and check file system blocks
1642            on recovery
1643
1644            If CRC check fails during recovery, remember the page in case
1645            a later CRC for that page properly matches.
1646
1647         o  Write full pages during file system write and not when
1648            the page is modified in the buffer cache
1649
1650            This allows most full page writes to happen in the background
1651            writer.  It might cause problems for applying WAL on recovery
1652            into a partially-written page, but later the full page will be
1653            replaced from WAL.
1654
1655 * Allow WAL traffic to be streamed to another server for stand-by
1656   replication
1657 * Reduce WAL traffic so only modified values are written rather than
1658   entire rows
1659
1660   http://archives.postgresql.org/pgsql-hackers/2007-03/msg01589.php
1661
1662 * Allow WAL information to recover corrupted pg_controldata
1663
1664   http://archives.postgresql.org/pgsql-patches/2006-06/msg00025.php
1665
1666 * Find a way to reduce rotational delay when repeatedly writing
1667   last WAL page
1668
1669   Currently fsync of WAL requires the disk platter to perform a full
1670   rotation to fsync again. One idea is to write the WAL to different
1671   offsets that might reduce the rotational delay.
1672   http://archives.postgresql.org/pgsql-hackers/2002-11/msg00483.php
1673
1674 * Allow WAL logging to be turned off for a table, but the table
1675   might be dropped or truncated during crash recovery
1676
1677   Allow tables to bypass WAL writes and just fsync() dirty pages on
1678   commit.  This should be implemented using ALTER TABLE, e.g. ALTER
1679   TABLE PERSISTENCE [ DROP | TRUNCATE | DEFAULT ].  Tables using
1680   non-default logging should not use referential integrity with
1681   default-logging tables.  A table without dirty buffers during a
1682   crash could perhaps avoid the drop/truncate.
1683   http://archives.postgresql.org/pgsql-hackers/2005-12/msg01016.php
1684
1685 * Allow WAL logging to be turned off for a table, but the table would
1686   avoid being truncated/dropped
1687
1688   To do this, only a single writer can modify the table, and writes
1689   must happen only on new pages so the new pages can be removed during
1690   crash recovery.  Readers can continue accessing the table.  Such
1691   tables probably cannot have indexes.  One complexity is the handling
1692   of indexes on TOAST tables.
1693   http://archives.postgresql.org/pgsql-hackers/2005-12/msg01016.php
1694
1695 * Speed WAL recovery by allowing more than one page to be prefetched
1696
1697   This should be done utilizing the same infrastructure used for
1698   prefetching in general to avoid introducing complex error-prone code
1699   in WAL replay.
1700   http://archives.postgresql.org/pgsql-general/2007-12/msg00683.php
1701   http://archives.postgresql.org/pgsql-hackers/2007-12/msg00497.php
1702   http://archives.postgresql.org/pgsql-hackers/2008-02/msg01279.php
1703
1704 * Improve WAL concurrency by increasing lock granularity
1705
1706   http://archives.postgresql.org/pgsql-hackers/2008-02/msg00556.php
1707
1708 * Be more aggressive about creating WAL files
1709
1710   http://archives.postgresql.org/pgsql-hackers/2007-10/msg01325.php
1711   http://archives.postgresql.org/pgsql-hackers/2004-07/msg01075.php
1712   http://archives.postgresql.org/pgsql-hackers/2005-04/msg00556.php
1713
1714 * Have resource managers report the duration of their status changes
1715
1716   http://archives.postgresql.org/pgsql-hackers/2007-10/msg01468.php
1717
1718 * Move pgfoundry's xlogdump to /contrib and have it rely more closely
1719   on the WAL backend code
1720
1721   http://archives.postgresql.org/pgsql-hackers/2007-11/msg00035.php
1722
1723
1724
1725
1726 Optimizer / Executor
1727 ====================
1728
1729 * Improve selectivity functions for geometric operators
1730 * Precompile SQL functions to avoid overhead
1731 * Create utility to compute accurate random_page_cost value
1732 * Improve ability to display optimizer analysis using OPTIMIZER_DEBUG
1733 * Have EXPLAIN ANALYZE issue NOTICE messages when the estimated and
1734   actual row counts differ by a specified percentage
1735 * Improve how ANALYZE computes in-doubt tuples
1736
1737   http://archives.postgresql.org/pgsql-hackers/2007-11/msg00771.php
1738
1739 * Log statements where the optimizer row estimates were dramatically
1740   different from the number of rows actually found?
1741 * Consider compressed annealing to search for query plans
1742
1743   This might replace GEQO, http://sixdemonbag.org/Djinni.
1744
1745 * Improve merge join performance by allowing mark/restore of
1746   tuple sources
1747
1748   http://archives.postgresql.org/pgsql-hackers/2007-01/msg00096.php
1749
1750 * Consider using a hash for joining to a large IN (VALUES ...) list
1751
1752   http://archives.postgresql.org/pgsql-hackers/2007-05/msg00450.php
1753
1754
1755
1756 Background Writer
1757 =================
1758
1759 * Consider having the background writer update the transaction status
1760   hint bits before writing out the page
1761
1762   Implementing this requires the background writer to have access to system
1763   catalogs and the transaction status log.
1764
1765 * Consider adding buffers the background writer finds reusable to the
1766   free list 
1767
1768   http://archives.postgresql.org/pgsql-hackers/2007-04/msg00781.php
1769
1770 * Automatically tune bgwriter_delay based on activity rather then using a
1771   fixed interval
1772
1773   http://archives.postgresql.org/pgsql-hackers/2007-04/msg00781.php
1774
1775 * Consider wither increasing BM_MAX_USAGE_COUNT improves performance
1776
1777   http://archives.postgresql.org/pgsql-hackers/2007-06/msg01007.php
1778
1779 * Test to see if calling PreallocXlogFiles() from the background writer
1780   will help with WAL segment creation latency
1781
1782   http://archives.postgresql.org/pgsql-patches/2007-06/msg00340.php
1783
1784
1785
1786 Miscellaneous Performance
1787 =========================
1788
1789 * Do async I/O for faster random read-ahead of data
1790
1791   Async I/O allows multiple I/O requests to be sent to the disk with
1792   results coming back asynchronously.
1793
1794   http://archives.postgresql.org/pgsql-hackers/2006-10/msg00820.php
1795   http://archives.postgresql.org/pgsql-performance/2007-09/msg00255.php
1796   http://archives.postgresql.org/pgsql-hackers/2007-12/msg00027.php
1797   http://archives.postgresql.org/pgsql-patches/2008-01/msg00170.php
1798
1799 * Use mmap() rather than SYSV shared memory or to write WAL files?
1800
1801   This would remove the requirement for SYSV SHM but would introduce
1802   portability issues. Anonymous mmap (or mmap to /dev/zero) is required
1803   to prevent I/O overhead.
1804
1805 * Consider mmap()'ing files into a backend?
1806
1807   Doing I/O to large tables would consume a lot of address space or
1808   require frequent mapping/unmapping.  Extending the file also causes
1809   mapping problems that might require mapping only individual pages,
1810   leading to thousands of mappings.  Another problem is that there is no
1811   way to _prevent_ I/O to disk from the dirty shared buffers so changes
1812   could hit disk before WAL is written.
1813
1814 * Add a script to ask system configuration questions and tune postgresql.conf
1815 * Consider ways of storing rows more compactly on disk
1816
1817         o Reduce the row header size?
1818         o Consider reducing on-disk varlena length from four bytes to
1819           two because a heap row cannot be more than 64k in length
1820
1821 * Consider increasing NUM_CLOG_BUFFERS
1822
1823   http://archives.postgresql.org/pgsql-hackers/2007-08/msg00030.php
1824   http://archives.postgresql.org/pgsql-performance/2007-08/msg00024.php
1825
1826 * Consider transaction start/end performance improvements
1827
1828   http://archives.postgresql.org/pgsql-hackers/2007-07/msg00948.php
1829   http://archives.postgresql.org/pgsql-hackers/2008-03/msg00361.php
1830
1831 * Allow user configuration of TOAST thresholds
1832
1833   http://archives.postgresql.org/pgsql-hackers/2007-02/msg00213.php
1834   http://archives.postgresql.org/pgsql-hackers/2007-08/msg00082.php
1835
1836 * Allow configuration of backend priorities via the operating system
1837
1838   Though backend priorities make priority inversion during lock
1839   waits possible, research shows that this is not a huge problem.
1840
1841   http://archives.postgresql.org/pgsql-general/2007-02/msg00493.php
1842
1843 * Experiment with multi-threaded backend better I/O utilization
1844
1845   This would allow a single query to make use of multiple I/O channels
1846   simultaneously.  One idea is to create a background reader that can
1847   pre-fetch sequential and index scan pages needed by other backends.
1848   This could be expanded to allow concurrent reads from multiple devices
1849   in a partitioned table.
1850
1851 * Experiment with multi-threaded backend better CPU utilization
1852
1853   This would allow several CPUs to be used for a single query, such as
1854   for sorting or query execution.
1855
1856 * Consider increasing the minimum allowed number of shared buffers
1857
1858   http://archives.postgresql.org/pgsql-bugs/2008-02/msg00157.php
1859
1860 * Expire published xmin for read-only and idle transactions
1861
1862   http://archives.postgresql.org/pgsql-hackers/2007-09/msg00343.php
1863
1864 * Consider if CommandCounterIncrement() can avoid its
1865   AcceptInvalidationMessages() call
1866
1867   http://archives.postgresql.org/pgsql-committers/2007-11/msg00585.php
1868
1869 * Improve performance of shared invalidation queue for multiple CPUs
1870
1871   http://archives.postgresql.org/pgsql-performance/2008-01/msg00023.php
1872
1873 * Consider Cartesian joins when both relations are needed to form an
1874   indexscan qualification for a third relation
1875
1876   http://archives.postgresql.org/pgsql-performance/2007-12/msg00090.php
1877
1878 * Consider not storing a NULL bitmap on disk if all the NULLs are
1879   trailing
1880
1881   http://archives.postgresql.org/pgsql-hackers/2007-12/msg00624.php
1882   http://archives.postgresql.org/pgsql-patches/2007-12/msg00109.php
1883
1884 * Sort large UPDATE/DELETEs so it is done in heap order
1885
1886   http://archives.postgresql.org/pgsql-hackers/2008-01/msg01119.php
1887
1888 * SMP scalability improvements
1889
1890   http://archives.postgresql.org/pgsql-hackers/2007-07/msg00439.php
1891   http://archives.postgresql.org/pgsql-hackers/2007-09/msg00206.php
1892   http://archives.postgresql.org/pgsql-hackers/2008-03/msg00361.php
1893
1894 * Research reducing deTOASTing in more places
1895
1896   http://archives.postgresql.org/pgsql-hackers/2007-09/msg00895.php
1897
1898 * Allow one transaction to see tuples using the snapshot of another
1899   transaction
1900
1901   This would assist multiple backends in working together.
1902   http://archives.postgresql.org/pgsql-hackers/2008-01/msg00400.php
1903
1904
1905 Source Code
1906 ===========
1907
1908 * Add use of 'const' for variables in source tree
1909 * Move some things from contrib into main tree
1910 * %Remove warnings created by -Wcast-align
1911 * Move platform-specific ps status display info from ps_status.c to ports
1912 * Add optional CRC checksum to heap and index pages
1913 * Improve documentation to build only interfaces (Marc)
1914 * Remove or relicense modules that are not under the BSD license, if possible
1915 * Acquire lock on a relation before building a relcache entry for it
1916 * Allow cross-compiling by generating the zic database on the target system
1917 * Improve NLS maintenance of libpgport messages linked onto applications
1918 * Clean up casting in contrib/isn
1919
1920   http://archives.postgresql.org/pgsql-hackers/2006-11/msg00245.php
1921
1922 * Improve the /contrib installation experience
1923
1924   http://archives.postgresql.org/pgsql-hackers/2008-04/msg00132.php
1925
1926 * Use UTF8 encoding for NLS messages so all server encodings can
1927   read them properly
1928 * Update Bonjour to work with newer cross-platform SDK
1929
1930   http://archives.postgresql.org/pgsql-hackers/2006-09/msg02238.php
1931   http://archives.postgresql.org/pgsql-patches/2006-10/msg00048.php
1932
1933 * Consider GnuTLS if OpenSSL license becomes a problem
1934
1935   http://archives.postgresql.org/pgsql-patches/2006-05/msg00040.php
1936   http://archives.postgresql.org/pgsql-hackers/2006-12/msg01213.php
1937
1938 * Consider changing documentation format from SGML to XML
1939
1940   http://archives.postgresql.org/pgsql-docs/2006-12/msg00152.php
1941
1942 * Consider making NAMEDATALEN more configurable in future releases
1943 * Update our code to handle 64-bit timezone files to match the zic
1944   source code, which now uses them
1945 * Have configure choose integer datetimes by default
1946
1947   http://archives.postgresql.org/pgsql-patches/2007-05/msg00046.php
1948
1949 * Support scoped IPv6 addresses
1950
1951   http://archives.postgresql.org/pgsql-bugs/2007-05/msg00111.php
1952
1953 * Consider allowing 64-bit integers and floats to be passed by value on
1954   64-bit platforms
1955
1956   Also change 32-bit floats (float4) to be passed by value at the same
1957   time.
1958
1959 * Research use of signals and sleep wake ups
1960
1961   http://archives.postgresql.org/pgsql-hackers/2007-07/msg00003.php
1962
1963 * Add automated check for invalid C++ source code constructs
1964
1965   http://archives.postgresql.org/pgsql-patches/2007-07/msg00056.php
1966
1967 * Consider simplifying how memory context resets handle child contexts
1968
1969   http://archives.postgresql.org/pgsql-patches/2007-08/msg00067.php
1970
1971 * Remove use of MAKE_PTR and MAKE_OFFSET macros
1972
1973   http://archives.postgresql.org/pgsql-general/2007-08/msg01510.php
1974
1975 * Convert single quotes to apostrophes in the PDF documentation
1976
1977   http://archives.postgresql.org/pgsql-docs/2007-12/msg00059.php
1978
1979 * Create three versions of libpgport to simplify client code
1980
1981   http://archives.postgresql.org/pgsql-hackers/2007-10/msg00154.php
1982
1983 * Remove old-style routines for manipulating tuples
1984
1985   http://archives.postgresql.org/pgsql-hackers/2007-10/msg00851.php
1986
1987 * Improve detection of shared memory segments being used by others
1988   by checking the SysV shared memory field 'nattch'
1989
1990   http://archives.postgresql.org/pgsql-hackers/2008-01/msg00656.php
1991   http://archives.postgresql.org/pgsql-hackers/2008-01/msg00673.php
1992
1993 * Implement the non-threaded Avahi service discovery protocol
1994
1995   http://archives.postgresql.org/pgsql-hackers/2008-02/msg00939.php
1996   http://archives.postgresql.org/pgsql-patches/2008-02/msg00097.php
1997   http://archives.postgresql.org/pgsql-hackers/2008-03/msg01211.php
1998   http://archives.postgresql.org/pgsql-patches/2008-04/msg00001.php
1999
2000 * Implement a module capability for loading /contrib-style extensions
2001
2002   http://archives.postgresql.org/pgsql-patches/2008-04/msg00164.php
2003
2004
2005 * Win32
2006
2007         o Remove configure.in check for link failure when cause is found
2008         o Remove readdir() errno patch when runtime/mingwex/dirent.c rev
2009           1.4 is released
2010         o -Remove psql newline patch when we find out why mingw outputs an
2011           extra newline
2012         o Allow psql to use readline once non-US code pages work with
2013           backslashes
2014         o Fix problem with shared memory on the Win32 Terminal Server
2015         o Diagnose problem where shared memory can sometimes not be
2016           attached by postmaster children
2017
2018           http://archives.postgresql.org/pgsql-general/2007-08/msg01377.php
2019
2020         o Improve signal handling
2021
2022           http://archives.postgresql.org/pgsql-patches/2005-06/msg00027.php
2023
2024         o Convert MSVC build system to remove most batch files
2025
2026           http://archives.postgresql.org/pgsql-hackers/2007-08/msg00961.php
2027
2028         o Prevent SSL from sending network packets to avoid interference
2029           with Win32 signal emulation
2030
2031           http://archives.postgresql.org/pgsql-hackers/2007-12/msg00455.php
2032
2033         o Support pgxs when using MSVC
2034
2035         o Fix MSVC NLS support, like for to_char()
2036
2037           http://archives.postgresql.org/pgsql-hackers/2008-02/msg00485.php
2038           http://archives.postgresql.org/pgsql-patches/2008-02/msg00038.php
2039
2040         o Find a correct rint() substitute on Windows
2041
2042           http://archives.postgresql.org/pgsql-hackers/2008-01/msg00808.php
2043
2044
2045
2046 * Wire Protocol Changes
2047
2048         o Allow dynamic character set handling
2049         o Add decoded type, length, precision
2050         o Use compression?
2051         o Update clients to use data types, typmod, schema.table.column names
2052           of result sets using new statement protocol
2053
2054
2055 Exotic Features
2056 ===============
2057
2058 * Add pre-parsing phase that converts non-ISO syntax to supported
2059   syntax
2060
2061   This could allow SQL written for other databases to run without
2062   modification.
2063
2064 * Allow plug-in modules to emulate features from other databases
2065 * Add features of Oracle-style packages  (Pavel)
2066
2067   A package would be a schema with session-local variables,
2068   public/private functions, and initialization functions.  It
2069   is also possible to implement these capabilities
2070   in any schema and not use a separate "packages"
2071   syntax at all.
2072
2073   http://archives.postgresql.org/pgsql-hackers/2006-08/msg00384.php
2074
2075 * Consider allowing control of upper/lower case folding of unquoted
2076   identifiers
2077
2078   http://archives.postgresql.org/pgsql-hackers/2004-04/msg00818.php
2079   http://archives.postgresql.org/pgsql-hackers/2006-10/msg01527.php
2080   http://archives.postgresql.org/pgsql-hackers/2008-03/msg00849.php
2081
2082 * Add autonomous transactions
2083
2084   http://archives.postgresql.org/pgsql-hackers/2008-01/msg00893.php
2085
2086
2087
2088 Features We Do _Not_ Want
2089 =========================
2090
2091 * All backends running as threads in a single process (not wanted)
2092
2093   This eliminates the process protection we get from the current setup.
2094   Thread creation is usually the same overhead as process creation on
2095   modern systems, so it seems unwise to use a pure threaded model.
2096
2097 * Optimizer hints (not wanted)
2098
2099   Optimizer hints are used to work around problems in the optimizer.  We
2100   would rather have the problems reported and fixed.
2101
2102   http://archives.postgresql.org/pgsql-hackers/2006-08/msg00506.php
2103   http://archives.postgresql.org/pgsql-hackers/2006-10/msg00517.php
2104   http://archives.postgresql.org/pgsql-hackers/2006-10/msg00663.php
2105
2106
2107   Because we support postfix operators, it isn't possible to make AS
2108   optional and continue to use bison.
2109   http://archives.postgresql.org/pgsql-hackers/2003-04/msg00436.php
2110
2111   http://archives.postgresql.org/pgsql-sql/2006-08/msg00164.php
2112
2113 * Embedded server (not wanted)
2114
2115   While PostgreSQL clients runs fine in limited-resource environments, the
2116   server requires multiple processes and a stable pool of resources to
2117   run reliabily and efficiently.  Stripping down the PostgreSQL server
2118   to run in the same process address space as the client application
2119   would add too much complexity and failure cases.