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