8
8
< body bgcolor ="#FFFFFF " text ="#000000 " link ="#FF0000 " vlink ="#A00000 " alink ="#0000FF ">
9
9
< h1 > < a name ="section_1 "> PostgreSQL TODO List</ a > </ h1 >
10
10
< p > Current maintainer: Bruce Momjian (< a href ="mailto:pgman@candle.pha.pa.us "> pgman@candle.pha.pa.us</ a > )< br />
11
- Last updated: Mon Dec 12 08:36:28 EST 2005
11
+ Last updated: Fri Dec 16 13:56:52 EST 2005
12
12
</ p >
13
13
< p > The most recent version of this document can be viewed at< br />
14
14
< a href ="http://www.postgresql.org/docs/faqs.TODO.html "> http://www.postgresql.org/docs/faqs.TODO.html</ a > .
@@ -125,7 +125,7 @@ <h1><a name="section_2">Administration</a></h1>
125
125
</ li > < li > Automatically force archiving of partially-filled WAL files when
126
126
pg_stop_backup() is called or the server is stopped
127
127
< p > Doing this will allow administrators to know more easily when
128
- the archive contins all the files needed for point-in-time
128
+ the archive contains all the files needed for point-in-time
129
129
recovery.
130
130
</ p >
131
131
</ li > < li > %Create dump tool for write-ahead logs for use in determining
@@ -172,7 +172,7 @@ <h1><a name="section_4">Data Types</a></h1>
172
172
</ li > < li > Fix data types where equality comparison isn't intuitive, e.g. box
173
173
</ li > < li > %Prevent INET cast to CIDR if the unmasked bits are not zero, or
174
174
zero the bits
175
- </ li > < li > %Prevent INET cast to CIDR from droping netmask, SELECT '< a href ="telnet://1.1.1.1 "> 1.1.1.1</ a > '::inet::cidr
175
+ </ li > < li > %Prevent INET cast to CIDR from dropping netmask, SELECT '< a href ="telnet://1.1.1.1 "> 1.1.1.1</ a > '::inet::cidr
176
176
</ li > < li > Allow INET + INT4 to increment the host part of the address, or
177
177
throw an error on overflow
178
178
</ li > < li > %Add 'tid != tid ' operator for use in corruption recovery
@@ -417,7 +417,7 @@ <h1><a name="section_8">SQL Commands</a></h1>
417
417
< li > Automatically maintain clustering on a table
418
418
< p > This might require some background daemon to maintain clustering
419
419
during periods of low usage. It might also require tables to be only
420
- paritally filled for easier reorganization. Another idea would
420
+ partially filled for easier reorganization. Another idea would
421
421
be to create a merged heap/index data file so an index lookup would
422
422
automatically access the heap data too. A third idea would be to
423
423
store heap rows in hashed groups, perhaps using a user-supplied
@@ -539,7 +539,7 @@ <h1><a name="section_9">Clients</a></h1>
539
539
</ li > < li > Improve psql's handling of multi-line statements
540
540
< p > Currently, while \e saves a single statement as one entry, interactive
541
541
statements are saved one line at a time. Ideally all statements
542
- whould be saved like \e does.
542
+ would be saved like \e does.
543
543
</ p >
544
544
</ li > < li > Allow multi-line column values to align in the proper columns
545
545
< p > If the second output column value is 'a\nb', the 'b' should appear
@@ -605,10 +605,10 @@ <h1><a name="section_9">Clients</a></h1>
605
605
historically it has so we need a way to prevent it
606
606
</ p >
607
607
</ li > < li > Allow statement results to be automatically batched to the client
608
- < p > Currently, all statement results are transfered to the libpq
608
+ < p > Currently, all statement results are transferred to the libpq
609
609
client before libpq makes the results available to the
610
610
application. This feature would allow the application to make
611
- use of the first result rows while the rest are transfered , or
611
+ use of the first result rows while the rest are transferred , or
612
612
held on the server waiting for them to be requested by libpq.
613
613
One complexity is that a statement like SELECT 1/col could error
614
614
out mid-way through the result set.
@@ -677,7 +677,7 @@ <h1><a name="section_12">Exotic Features</a></h1>
677
677
</ p >
678
678
</ li > < li > Add the features of packages
679
679
< ul >
680
- < li > Make private objects accessable only to objects in the same schema
680
+ < li > Make private objects accessible only to objects in the same schema
681
681
</ li > < li > Allow current_schema.objname to access current schema objects
682
682
</ li > < li > Add session variables
683
683
</ li > < li > Allow nested schemas
@@ -774,7 +774,7 @@ <h1><a name="section_15">Cache Usage</a></h1>
774
774
to obtain tuple visibility information.
775
775
</ p >
776
776
</ li > < li > Add estimated_count(*) to return an estimate of COUNT(*)
777
- < p > This would use the planner ANALYZE statistatics to return an estimated
777
+ < p > This would use the planner ANALYZE statistics to return an estimated
778
778
count.
779
779
</ p >
780
780
</ li > < li > Allow data to be pulled directly from indexes
@@ -799,7 +799,7 @@ <h1><a name="section_15">Cache Usage</a></h1>
799
799
</ li > < li > Query results
800
800
</ li > </ ul >
801
801
</ li > < li > Allow sequential scans to take advantage of other concurrent
802
- sequentiqal scans, also called "Synchronised Scanning"
802
+ sequential scans, also called "Synchronised Scanning"
803
803
< p > One possible implementation is to start sequential scans from the lowest
804
804
numbered buffer in the shared cache, and when reaching the end wrap
805
805
around to the beginning, rather than always starting sequential scans
@@ -810,7 +810,7 @@ <h1><a name="section_16">Vacuum</a></h1>
810
810
811
811
< ul >
812
812
< li > Improve speed with indexes
813
- < p > For large table adjustements during VACUUM FULL, it is faster to
813
+ < p > For large table adjustments during VACUUM FULL, it is faster to
814
814
reindex rather than update the index.
815
815
</ p >
816
816
</ li > < li > Reduce lock time during VACUUM FULL by moving tuples with read lock,
@@ -853,7 +853,7 @@ <h1><a name="section_18">Startup Time Improvements</a></h1>
853
853
< li > Experiment with multi-threaded backend [< a href ="http://momjian.postgresql.org/cgi-bin/pgtodo?thread "> thread</ a > ]
854
854
< p > This would prevent the overhead associated with process creation. Most
855
855
operating systems have trivial process creation time compared to
856
- database startup overhead, but a few operating systems (WIn32 ,
856
+ database startup overhead, but a few operating systems (Win32 ,
857
857
Solaris) might benefit from threading. Also explore the idea of
858
858
a single session using multiple threads to execute a statement faster.
859
859
</ p >
0 commit comments