1
1
TODO list for PostgreSQL
2
2
========================
3
- Last updated:Fri Dec 1800:15:58 EST 1998
3
+ Last updated:Fri Dec 1802:30:47 EST 1998
4
4
5
5
Current maintainer:Bruce Momjian (maillist@candle.pha.pa.us)
6
6
@@ -52,10 +52,9 @@ RELIABILITY
52
52
* Remove EXTEND?
53
53
* Can lo_export()/lo_import() read/write anywhere, causing a security problem?
54
54
* Tables that start with xinv confused to be large objects
55
- * Two and threedimmensional arrays display improperly, missing {}
55
+ * Two and threedimensional arrays display improperly, missing {}
56
56
* GROUP BY in INSERT INTO table SELECT * FROM table2 fails
57
57
* Prevent auto-table reference, like SELECT table.col WHERE col = 3 (?)
58
- * SELECT * FROM table WHERE int4_column = '1' fails
59
58
* SELECT a[1] FROM test fails, it needs test.a[1]
60
59
* UPDATE table SET table.value = 3 fails
61
60
* User who can create databases can modify pg_database table
@@ -64,13 +63,11 @@ RELIABILITY
64
63
* views on subselects fail
65
64
* disallow inherited columns with the same name as new columns
66
65
* recover or force failure when disk space is exhausted
67
- * default char() value not to full length crashes server on some OS's
68
66
* allow UPDATE using aggregate to affect all rows, not just one
69
67
* computations in views fail:
70
68
create view test as select usesysid * usesysid from pg_shadow;
71
69
* views containing aggregates sometimes fail(Jan)
72
70
* ALTER TABLE ADD COLUMN does not honor DEFAULT, add CONSTRAINT
73
- * SELECT DISTINCT i FROM dtest ORDER BY j generates strange output
74
71
* fix memory leak in aborted transactions
75
72
* array index references without table name cause problems
76
73
* aggregates on array indexes crash backend
@@ -93,14 +90,11 @@ ENHANCEMENTS
93
90
* add temporary tables
94
91
* add sql3 recursive unions
95
92
* add the concept of dataspaces
96
- * addDECIMAL, NUMERIC, DOUBLE PRECISION, BIT, BIT VARYING
93
+ * add BIT, BIT VARYING
97
94
* NCHAR (as distinguished from ordinary varchar),
98
95
* DOMAIN capability
99
96
* Allow compression of large fields or a compressed field type
100
97
* Fix the rules system(Jan,Soo-Ho)
101
- * add CONSTRAINT
102
- * Full set of text operations and functions
103
- * word searches, concat,max() on text, char
104
98
* Large objects
105
99
* Fix large object mapping scheme, own reltype(Peter)
106
100
* Allow large text type to use large objects(Peter)
@@ -113,11 +107,8 @@ ENHANCEMENTS
113
107
(fix lseek()/off_t, mdextend()/RELSEG_SIZE)
114
108
* Add REGEX internationalization
115
109
* allow row re-use without vacuum, maybe?(Vadim)
116
- * Add word index for text fields, maybe with trigrams, i.e.:
117
- * ' (cat | dog) & ! fox ' meaning text has cat aor dog, but not fox
118
110
* Populate backend status area and write program to dump status data
119
111
* Add ALTER TABLE DROP/ALTER COLUMN feature
120
- * Allow INSERT INTO ... SELECT to convert column types
121
112
* Add syslog functionality(Marc)
122
113
* Add STDDEV/VARIANCE() function for standard deviation computation/variance
123
114
* add UNIQUE capability to non-btree indexes
@@ -126,13 +117,11 @@ ENHANCEMENTS
126
117
* make NULL's come out at the beginning or end depending on the ORDER BY direction
127
118
* change the library/backend interface to use network byte order
128
119
* Restore unused oid's on backend exit if no one else has gotten oids
129
- * remove non-standard types from the system, and make them loadable
130
120
* have UPDATE/DELETE clean out indexes
131
121
* allow WHERE restriction on ctid
132
122
* allow pg_descriptions when creating types, tables, columns, and functions
133
123
* Fix compile and security of Kerberos/GSSAPI code
134
124
* Allow psql to print nulls as distinct from ""(?)
135
- * Allow variable casts with BETWEEN 'today'::asbtime AND 'today'::abstime
136
125
* Allow INSERT INTO ... SELECT ... FROM view to work
137
126
* Make VACUUM on database not lock pg_class
138
127
* Make VACUUM ANALYZE only use a readlock
@@ -146,9 +135,7 @@ ENHANCEMENTS
146
135
* New pg_shadow file, pg_user is now a view of pg_shadow(Jan)
147
136
* Allow flag to control COPY input/output of NULLs
148
137
* Allow CLUSTER on all tables at once, and improve CLUSTER
149
- * Change all references of Postgres to PostgreSQL, including binary names
150
138
* Add ELOG_TIMESTAMPS to elog()(?)
151
- * Change LOCK tablename to LOCK TABLE tablename(?)
152
139
* Allow max tuple length to be changed(Darren)
153
140
* Have psql with no database name not connect to username as default(?)
154
141
* Allow subqueries in target list
@@ -173,8 +160,7 @@ ENHANCEMENTS
173
160
* multi-verion concurrency control(Vadim)
174
161
* improve reporting of syntax errors by showing location of error in query
175
162
* allow chaining of pages to allow >8k tuples
176
- * no min/max for oid type
177
- * remove un-needed conversion functions
163
+ * remove un-needed conversion functions where appropriate
178
164
* redesign the function call interface to handle NULLs better(Jan)
179
165
* permissions on indexes - prevent them?
180
166
* allow multiple generic operators in expressions without the use of parentheses
@@ -226,7 +212,6 @@ DOCUMENTATION
226
212
-------------
227
213
* Update usermanual source(many)
228
214
* added features used in grammer but not in docs, like :: and CAST
229
- * Add keyword list to documentation, already in /tools
230
215
* Add 'man pgsql' to show all manual page names
231
216
* Add use of 'const' for varibles in source tree
232
217
@@ -236,22 +221,21 @@ DOCUMENTATION
236
221
CHANGES IN THE 6.4.1 RELEASE
237
222
----------------------------
238
223
Add pg_dump -N flag to force double quotes around identifiers. This is
239
- the default
224
+ the default(Thomas)
240
225
Fix for NOT in where clause causing crash(Bruce)
241
226
EXPLAIN VERBOSE coredump fix(Vadim)
242
227
Fix shared-library problems on Linux
243
228
Fix test for table existance to allow mixed-case and whitespace in
244
- the table name
229
+ the table name(Thomas)
245
230
Fix a couple of pg_dump bugs
246
- Fix for creating tables with constraints when table name is mixed-case(Billy)
247
231
Configure matches template/.similar entries better(Tom)
248
232
Change builtin function names from SPI_* to spi_*
249
233
OR WHERE clause fix(Vadim)
250
234
Fixes for mixed-case table names(Billy)
251
- contrib/linux/postgres.init.csh/sh fix
235
+ contrib/linux/postgres.init.csh/sh fix(Thomas)
252
236
libpq memory overrun fix
253
237
SunOS fixes(Tom)
254
- Change exp() behavior to generate error on underflow
238
+ Change exp() behavior to generate error on underflow(Thomas)
255
239
pg_dump fixes for memory leak, inheritance constraints, layout change
256
240
update pgaccess to 0.93
257
241
Fix prototype for 64-bit platforms
@@ -262,7 +246,7 @@ Fix for lo_import() crash(Bruce)
262
246
Better search for install program(Tom)
263
247
Timezone fixes(Tom)
264
248
HPUX fixes(Tom)
265
- Use implicit type coersion for matching DEFAULT values
249
+ Use implicit type coersion for matching DEFAULT values(Thomas)
266
250
Add routines to help with single-byte (internal) character type(Thomas)
267
251
Compilation of libpq for Win32 fixes(Magnus)
268
252
Upgrade to PyGreSQL 2.2(D'Arcy)