Skip to content

Commit 0579096

Browse files
committed
Remove completed items:
< A dash (-) marks changes that will appear in the upcoming 7.3 release. > A dash (-) marks changes that will appear in the upcoming 7.4 release. 38d37 < * -Change DEBUG startup tag to LOG (Bruce) 40,51d38 < * -Add pg_backend_pid() function to backend < * -Allow logging of query durations < < < Permissions < =========== < < * -Improve control over user privileges, including table creation < * -Allow user/group names to be specified directly in pg_hba.conf (Bruce) < * -Add ~/.pgpass to store passwords with user/host/password combinations < * -Allow permissions for functions (Peter E) < * -Allow object creation to be disabled for specific users 58,60d44 < * -Make it easier to create a database owned by someone who can't createdb, < perhaps CREATE DATABASE dbname WITH OWNER = "user" (Gavin) < * -Make equals sign optional in CREATE DATABASE WITH param = 'val' 65,66d48 < * -Prevent SIGHUP and 'pg_ctl reload' from changing command line < specified parameters to postgresql.conf defaults (Peter E) 69,70d50 < * -Reserve last few process slots for super-user if max_connections reached < * -Add GUC parameter to print queries that generate errors 79d58 < * -Add domain capability (Rod Taylor) 82,84d60 < * -SELECT cash_out(2) crashes because of opaque < * -Declare typein/out functions in pg_proc with a special "C string" data type < * -Functions returning sets do not totally work 89d64 < * -Add GUC parameter for DATESTYLE 91,93d65 < * -Allow bytea to handle LIKE with non-TEXT patterns < * -to_char(0,'FM999.99') returns a period, to_char(1,'FM999.99') doesn't (Karel) < * -Add floor(float8) and other missing functions 97d68 < o -Store binary-compatible type information in the system 104d74 < o -Ensure we have array-eq operators for every built-in array type 139,140d108 < * -Remove brackets as multi-statement rule grouping, must use parens (Bruce) < * -Prevent aggregates from being used in rule WHERE clauses 154d121 < * -Allow UPDATE/DELETE on inherited table 166d132 < * -Add deleted bit to index tuples to reduce heap access 176d141 < * -Test hash index performance and discourage usage 182d146 < * -Add SIMILAR TO to allow character classes, 'pg_[a-c]%' 184d147 < * -Remove LIMIT #,# and force use LIMIT and OFFSET clauses in 7.3 (Bruce) 186,187d148 < * -Disallow TRUNCATE on tables that are involved in referential constraints < * -Add OR REPLACE clauses to non-FUNCTION object creation 190d150 < * -Prevent create/drop scripts from allowing extra args (Bruce) 201,205d160 < o -Add ALTER TABLE DROP COLUMN feature < o -Add ALTER TABLE DROP non-CHECK CONSTRAINT < o -ALTER TABLE ADD PRIMARY KEY (Tom) < o -ALTER TABLE ADD UNIQUE (Tom) < o -ALTER TABLE ALTER COLUMN SET/DROP NOT NULL (Christopher) 210d164 < o -Have ALTER TABLE OWNER change all dependant objects like indexes 214,216d167 < o -Cluster all tables at once using pg_index.indisclustered set during < previous CLUSTER < o -Prevent loss of indexes, permissions, inheritance 221d171 < o -Allow specification of column names 224d173 < o -Change syntax to WITH DELIMITER, (keep old syntax around?) 228d176 < o -Generate failure on short COPY lines rather than pad NULLs 242,243d189 < o -Allow INSERT INTO my_table VALUES (a, b, c, DEFAULT, x, y, z, ...) < o -Disallow missing columns in INSERT ... (col) VALUES, per ANSI 248,249d193 < o -Add command to display locks < o -Add SET or BEGIN timeout parameter to cancel query 251d194 < o -Remove SET KSQO option now that OR processing is improved (Bruce) 254,256d196 < o -Add SHOW command to see locale < o -Allow SHOW to output as a query result, like EXPLAIN < o -Abort all SET changes made in an aborted transaction 264d203 < o -Fix PL/PgSQL to handle quoted mixed-case identifiers 287,291d225 < * -Have pg_dump use LEFT OUTER JOIN in multi-table SELECTs < or multiple SELECTS to avoid bad system catalog entries < * -Have pg_dump -C dump database location and encoding information < * -Allow psql \d to show foreign keys < * -Allow psql \d to show temporary table structure (Tom) 294d227 < * -Have pg_dump use ADD PRIMARY KEY after COPY, for performance (Neil) 302d234 < o -Updateable resultSet 307d238 < o -Implement cancel() method on Statement 309d239 < o -Add support for CallableStatements 311d240 < o -Compile under jdk 1.4 334d262 < * -Allow oid to act as a foreign key 337,338d264 < * -Allow user to control trigger firing order (Tom) < * -Add ALTER TRIGGER ... RENAME 341d266 < * -Fix foreign key constraints to not error on intermediate db states (Stephan) 350,359d274 < * -Add pg_depend table for dependency recording; use sysrelid, oid, < depend_sysrelid, depend_oid, name < * -Auto-destroy sequence on DROP of table with SERIAL; perhaps a separate < SERIAL type < * -Prevent column dropping if column is used by foreign key < * -Propagate column or table renaming to foreign key constraints < * -Automatically drop constraints/functions when object is dropped < * -Make foreign key constraints clearer in dump file < * -Make other constraints clearer in dump file < * -Make foreign keys easier to identify 367d281 < * -Allow autocommit so always in a transaction block 377d290 < * -Add SQL92 schemas (Tom) 400d312 < * -Cache most recent query plan(s) (Neil) [prepare] 439d350 < * -Cache system catalog information in per-database files (Tom) 450,451d360 < * -Reorder postgresql.conf WAL items in order of importance (Bruce) < * -Remove wal_files postgresql.conf option because WAL files are now recycled 465,466d373 < * -Improve dynamic memory allocation by introducing tuple-context memory < allocation (Tom) 468d374 < * -Nested FULL OUTER JOINs don't work (Tom) 470,472d375 < * -Add new pg_proc cachable settings to specify whether function can be < evaluated only once or once per query < * -Change FIXED_CHAR_SEL to 0.20 from 0.04 to give better selectivity (Bruce) 494,496d396 < * -Add Intimate Shared Memory(ISM) for Solaris < * -Use faster flex flags for performance improvement (Peter E) < * -Add BSD-licensed qsort() for Solaris 503,507d402 < * -Fix problems with libpq non-blocking/async code < * -Make sure all block numbers are unsigned to increase maximum table size < * -Merge LockMethodCtl and LockMethodTable into one shared structure (Bruce) < * -HOLDER/HOLDERTAB rename to PROCLOCK/PROCLOCKTAG (Bruce) < * -Remove LockMethodTable.prio field, not used (Bruce) 512,513d406 < * -Make one version of simple_prompt() in code (Bruce, Tom) < * -Compile in syslog functionaility by default (Tatsuo) 517d409 < * -Report failure to find readline or zlib at end of configure run 519,520d410 < * -Increase identifier length (NAMEDATALEN) if small performance hit, < * -Increase maximum number of function parameters if little wasted space 529,530d418 < * -Fix glibc's mktime() to handle pre-1970's dates < * -Move /contrib/retep to gborg.postgresql.org
1 parent 308910d commit 0579096

File tree

1 file changed

+2
-114
lines changed

1 file changed

+2
-114
lines changed

doc/TODO

Lines changed: 2 additions & 114 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
TODO list for PostgreSQL
22
========================
3-
Last updated: Wed Nov 6 00:12:55 EST 2002
3+
Last updated: Wed Nov 6 00:55:00 EST 2002
44

55
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
66

77
The most recent version of this document can be viewed at
88
the PostgreSQL web site, http://www.PostgreSQL.org.
99

10-
A dash (-) marks changes that will appear in the upcoming 7.3 release.
10+
A dash (-) marks changes that will appear in the upcoming 7.4 release.
1111

1212
Bracketed items "[]" have more detailed.
1313

@@ -35,39 +35,19 @@ Reporting
3535
number, not just messages (Peter E)
3636
* Add error codes (Peter E)
3737
* Make error messages more consistent [error]
38-
* -Change DEBUG startup tag to LOG (Bruce)
3938
* Show location of syntax error in query [yacc]
40-
* -Add pg_backend_pid() function to backend
41-
* -Allow logging of query durations
42-
43-
44-
Permissions
45-
===========
46-
47-
* -Improve control over user privileges, including table creation
48-
* -Allow user/group names to be specified directly in pg_hba.conf (Bruce)
49-
* -Add ~/.pgpass to store passwords with user/host/password combinations
50-
* -Allow permissions for functions (Peter E)
51-
* -Allow object creation to be disabled for specific users
5239

5340

5441
Administration
5542
==============
5643

5744
* Incremental backups
58-
* -Make it easier to create a database owned by someone who can't createdb,
59-
perhaps CREATE DATABASE dbname WITH OWNER = "user" (Gavin)
60-
* -Make equals sign optional in CREATE DATABASE WITH param = 'val'
6145
* Remove unreferenced table files and temp tables during database vacuum
6246
or postmaster startup (Bruce)
6347
* Remove behavior of postmaster -o after making postmaster/postgres
6448
flags unique
65-
* -Prevent SIGHUP and 'pg_ctl reload' from changing command line
66-
specified parameters to postgresql.conf defaults (Peter E)
6749
* Allow easy display of usernames in a group
6850
* Allow configuration files to be specified in a different directory
69-
* -Reserve last few process slots for super-user if max_connections reached
70-
* -Add GUC parameter to print queries that generate errors
7151
* Add start time to pg_stat_activity
7252
* Allow limits on per-db/user connections
7353
* Have standalone backend read postgresql.conf
@@ -76,32 +56,22 @@ Administration
7656
Data Types
7757
==========
7858

79-
* -Add domain capability (Rod Taylor)
8059
* Add IPv6 capability to INET/CIDR types
8160
* Remove Money type, add money formatting for decimal type
82-
* -SELECT cash_out(2) crashes because of opaque
83-
* -Declare typein/out functions in pg_proc with a special "C string" data type
84-
* -Functions returning sets do not totally work
8561
* Change factorial to return a numeric
8662
* Change NUMERIC data type to use base 10,000 internally
8763
* Change NUMERIC to enforce the maximum precision, and increase it
8864
* Add function to return compressed length of TOAST data values (Tom)
89-
* -Add GUC parameter for DATESTYLE
9065
* Allow INET subnet tests using non-constants
91-
* -Allow bytea to handle LIKE with non-TEXT patterns
92-
* -to_char(0,'FM999.99') returns a period, to_char(1,'FM999.99') doesn't (Karel)
93-
* -Add floor(float8) and other missing functions
9466
* Add now("transaction|statement|clock") functionality
9567

9668
* CONVERSION
97-
o -Store binary-compatible type information in the system
9869
o Allow better handling of numeric constants, type conversion
9970
[typeconv]
10071

10172
* ARRAYS
10273
o Allow nulls in arrays
10374
o Allow arrays to be ORDER'ed
104-
o -Ensure we have array-eq operators for every built-in array type
10575
o Support construction of array result values in expressions
10676

10777
* BINARY DATA
@@ -136,8 +106,6 @@ Views / Rules
136106
* Have views on temporary tables exist in the temporary namespace
137107
* Move psql backslash information into views
138108
* Allow RULE recompilation
139-
* -Remove brackets as multi-statement rule grouping, must use parens (Bruce)
140-
* -Prevent aggregates from being used in rule WHERE clauses
141109

142110

143111
Indexes
@@ -151,7 +119,6 @@ Indexes
151119
* UNIQUE INDEX on base column not honored on inserts from inherited table
152120
INSERT INTO inherit_table (unique_index_col) VALUES (dup) should fail
153121
[inheritance]
154-
* -Allow UPDATE/DELETE on inherited table
155122
* Add UNIQUE capability to non-btree indexes
156123
* Add btree index support for reltime, tinterval, regproc
157124
* Add rtree index support for line, lseg, path, point
@@ -163,7 +130,6 @@ Indexes
163130
* Use index to restrict rows returned by multi-key index when used with
164131
non-consecutive keys or OR clauses, so fewer heap accesses
165132
* Be smarter about insertion of already-ordered data into btree index
166-
* -Add deleted bit to index tuples to reduce heap access
167133
* Prevent index uniqueness checks when UPDATE does not modifying column
168134
* Use bitmaps to fetch heap pages in sequential order [performance]
169135
* Use bitmaps to combine existing indexes [performance]
@@ -173,21 +139,15 @@ Indexes
173139
* Add FILLFACTOR to btree index creation
174140
* Add concurrency to GIST
175141
* Improve concurrency of hash indexes (Neil)
176-
* -Test hash index performance and discourage usage
177142

178143

179144
Commands
180145
========
181146

182-
* -Add SIMILAR TO to allow character classes, 'pg_[a-c]%'
183147
* Add BETWEEN ASYMMETRIC/SYMMETRIC (Christopher)
184-
* -Remove LIMIT #,# and force use LIMIT and OFFSET clauses in 7.3 (Bruce)
185148
* Allow LIMIT/OFFSET to use expressions
186-
* -Disallow TRUNCATE on tables that are involved in referential constraints
187-
* -Add OR REPLACE clauses to non-FUNCTION object creation
188149
* CREATE TABLE AS can not determine column lengths from expressions [atttypmod]
189150
* Allow UPDATE to handle complex aggregates [update]
190-
* -Prevent create/drop scripts from allowing extra args (Bruce)
191151
* Allow command blocks to ignore certain types of errors
192152
* Allow backslash handling in quoted strings to be disabled for portability
193153
* Return proper effected tuple count from complex commands [return]
@@ -198,34 +158,22 @@ Commands
198158

199159
* ALTER
200160
o ALTER TABLE ADD COLUMN does not honor DEFAULT and non-CHECK CONSTRAINT
201-
o -Add ALTER TABLE DROP COLUMN feature
202-
o -Add ALTER TABLE DROP non-CHECK CONSTRAINT
203-
o -ALTER TABLE ADD PRIMARY KEY (Tom)
204-
o -ALTER TABLE ADD UNIQUE (Tom)
205-
o -ALTER TABLE ALTER COLUMN SET/DROP NOT NULL (Christopher)
206161
o ALTER TABLE ADD COLUMN column DEFAULT should fill existing
207162
rows with DEFAULT value
208163
o ALTER TABLE ADD COLUMN column SERIAL doesn't create sequence because
209164
of the item above
210-
o -Have ALTER TABLE OWNER change all dependant objects like indexes
211165
o Add ALTER TABLE tab SET WITHOUT OIDS
212166

213167
* CLUSTER
214-
o -Cluster all tables at once using pg_index.indisclustered set during
215-
previous CLUSTER
216-
o -Prevent loss of indexes, permissions, inheritance
217168
o Automatically maintain clustering on a table
218169
o Allow CLUSTER to cluster all tables, remove clusterdb
219170

220171
* COPY
221-
o -Allow specification of column names
222172
o Allow psql \copy to specify column names
223173
o Allow dump/load of CSV format
224-
o -Change syntax to WITH DELIMITER, (keep old syntax around?)
225174
o Allow COPY to report error lines and continue; optionally
226175
allow error codes to be specified; requires savepoints or can
227176
not be run in a multi-statement transaction
228-
o -Generate failure on short COPY lines rather than pad NULLs
229177
o Allow copy to understand \x as hex
230178

231179
* CURSOR
@@ -239,29 +187,20 @@ Commands
239187
* INSERT
240188
o Allow INSERT/UPDATE of system-generated oid value for a row
241189
o Allow INSERT INTO tab (col1, ..) VALUES (val1, ..), (val2, ..)
242-
o -Allow INSERT INTO my_table VALUES (a, b, c, DEFAULT, x, y, z, ...)
243-
o -Disallow missing columns in INSERT ... (col) VALUES, per ANSI
244190
o Allow INSERT/UPDATE ... RETURNING new.col or old.col; handle
245191
RULE cases (Philip)
246192

247193
* SHOW/SET
248-
o -Add command to display locks
249-
o -Add SET or BEGIN timeout parameter to cancel query
250194
o Add SET REAL_FORMAT and SET DOUBLE_PRECISION_FORMAT using printf args
251-
o -Remove SET KSQO option now that OR processing is improved (Bruce)
252195
o Add SET PERFORMANCE_TIPS option to suggest INDEX, VACUUM, VACUUM
253196
ANALYZE, and CLUSTER
254-
o -Add SHOW command to see locale
255-
o -Allow SHOW to output as a query result, like EXPLAIN
256-
o -Abort all SET changes made in an aborted transaction
257197
o Add SET SCHEMA
258198
o Allow EXPLAIN EXECUTE to see prepared plans
259199
o Allow SHOW of non-modifiable variables, like pg_controldata
260200
o Add GUC parameter to control the maximum number of rewrite cycles
261201

262202
* SERVER-SIDE LANGUAGES
263203
o Allow PL/PgSQL's RAISE function to take expressions
264-
o -Fix PL/PgSQL to handle quoted mixed-case identifiers
265204
o Change PL/PgSQL to use palloc() instead of malloc()
266205
o Add untrusted version of plpython
267206
o Allow Java server-side programming, http://pljava.sourceforge.net
@@ -284,31 +223,21 @@ Commands
284223
Clients
285224
=======
286225

287-
* -Have pg_dump use LEFT OUTER JOIN in multi-table SELECTs
288-
or multiple SELECTS to avoid bad system catalog entries
289-
* -Have pg_dump -C dump database location and encoding information
290-
* -Allow psql \d to show foreign keys
291-
* -Allow psql \d to show temporary table structure (Tom)
292226
* Allow psql to show transaction status if backend protocol changes made
293227
* Add XML interface: psql, pg_dump, COPY, separate server (?)
294-
* -Have pg_dump use ADD PRIMARY KEY after COPY, for performance (Neil)
295228
* Add schema, cast, and conversion backslash commands to psql
296229
* Allow pg_dump to dump a specific schema
297230
* Allow psql to do table completion for SELECT * FROM schema_part and
298231
table completion for SELECT * FROM schema_name.
299232

300233
* JDBC
301234
o Comprehensive test suite. This may be available already.
302-
o -Updateable resultSet
303235
o JDBC-standard BLOB support
304236
o Error Codes (pending backend implementation)
305237
o Support both 'make' and 'ant'
306238
o Fix LargeObject API to handle OIDs as unsigned ints
307-
o -Implement cancel() method on Statement
308239
o Use cursors implicitly to avoid large results (see setCursorName())
309-
o -Add support for CallableStatements
310240
o Add LISTEN/NOTIFY support to the JDBC driver (Barry)
311-
o -Compile under jdk 1.4
312241

313242
* ECPG
314243
o Implement set descriptor, using descriptor
@@ -331,14 +260,10 @@ Referential Integrity
331260

332261
* Add MATCH PARTIAL referential integrity [foreign]
333262
* Add deferred trigger queue file (Jan)
334-
* -Allow oid to act as a foreign key
335263
* Implement dirty reads and use them in RI triggers
336264
* Enforce referential integrity for system tables
337-
* -Allow user to control trigger firing order (Tom)
338-
* -Add ALTER TRIGGER ... RENAME
339265
* Change foreign key constraint for array -> element to mean element
340266
in array
341-
* -Fix foreign key constraints to not error on intermediate db states (Stephan)
342267
* Allow DEFERRABLE UNIQUE constraints
343268
* Allow triggers to be disabled [trigger]
344269
* Support statement-level triggers and triggers on columns (Neil)
@@ -347,24 +272,13 @@ Referential Integrity
347272
Dependency Checking
348273
===================
349274

350-
* -Add pg_depend table for dependency recording; use sysrelid, oid,
351-
depend_sysrelid, depend_oid, name
352-
* -Auto-destroy sequence on DROP of table with SERIAL; perhaps a separate
353-
SERIAL type
354-
* -Prevent column dropping if column is used by foreign key
355-
* -Propagate column or table renaming to foreign key constraints
356-
* -Automatically drop constraints/functions when object is dropped
357-
* -Make foreign key constraints clearer in dump file
358-
* -Make other constraints clearer in dump file
359-
* -Make foreign keys easier to identify
360275
* Flush cached query plans when their underlying catalog data changes
361276
* Use dependency information to dump data in proper order
362277

363278

364279
Transactions
365280
============
366281

367-
* -Allow autocommit so always in a transaction block
368282
* Overhaul bufmgr/lockmgr/transaction manager
369283
* Allow savepoints / nested transactions [transactions]
370284

@@ -374,7 +288,6 @@ Exotic Features
374288

375289
* Add sql3 recursive unions
376290
* Add the concept of dataspaces/tablespaces [tablespaces]
377-
* -Add SQL92 schemas (Tom)
378291
* Allow queries across multiple databases [crossdb]
379292
* Add pre-parsing phase that converts non-ANSI features to supported features
380293
* Allow plug-in modules to emulate features from other databases
@@ -397,7 +310,6 @@ Fsync
397310

398311
Cache
399312
=====
400-
* -Cache most recent query plan(s) (Neil) [prepare]
401313
* Shared catalog cache, reduce lseek()'s by caching table size in shared area
402314
* Add free-behind capability for large sequential scans (Bruce)
403315
* Allow binding query args over FE/BE protocol
@@ -436,7 +348,6 @@ Startup Time
436348
* Do listen() in postmaster and accept() in pre-forked backend
437349
* Have pre-forked backend pre-connect to last requested database or pass
438350
file descriptor to backend pre-forked for matching database
439-
* -Cache system catalog information in per-database files (Tom)
440351

441352

442353
Write-Ahead Log
@@ -447,8 +358,6 @@ Write-Ahead Log
447358
partial page writes [wal]
448359
* Turn off after-change writes if fsync is disabled (?)
449360
* Add WAL index reliability improvement to non-btree indexes
450-
* -Reorder postgresql.conf WAL items in order of importance (Bruce)
451-
* -Remove wal_files postgresql.conf option because WAL files are now recycled
452361
* Find proper defaults for postgresql.conf WAL entries
453362
* Add checkpoint_min_warning postgresql.conf option to warn about checkpoints
454363
that are too frequent
@@ -462,14 +371,8 @@ Optimizer / Executor
462371

463372
* Improve Subplan list handling
464373
* Allow Subplans to use efficient joins(hash, merge) with upper variable
465-
* -Improve dynamic memory allocation by introducing tuple-context memory
466-
allocation (Tom)
467374
* Add hash for evaluating GROUP BY aggregates
468-
* -Nested FULL OUTER JOINs don't work (Tom)
469375
* Allow merge and hash joins on expressions not just simple variables (Tom)
470-
* -Add new pg_proc cachable settings to specify whether function can be
471-
evaluated only once or once per query
472-
* -Change FIXED_CHAR_SEL to 0.20 from 0.04 to give better selectivity (Bruce)
473376
* Make IN/NOT IN have similar performance to EXISTS/NOT EXISTS [exists]
474377
* Missing optimizer selectivities for date, r-tree, etc. [optimizer]
475378
* Allow ORDER BY ... LIMIT to select top values without sort or index
@@ -491,33 +394,20 @@ Miscellaneous
491394
when it is available
492395
* Use mmap() rather than SYSV shared memory or to write WAL files (?) [mmap]
493396
* Improve caching of attribute offsets when NULLs exist in the row
494-
* -Add Intimate Shared Memory(ISM) for Solaris
495-
* -Use faster flex flags for performance improvement (Peter E)
496-
* -Add BSD-licensed qsort() for Solaris
497397

498398

499399
Source Code
500400
===========
501401

502402
* Add use of 'const' for variables in source tree
503-
* -Fix problems with libpq non-blocking/async code
504-
* -Make sure all block numbers are unsigned to increase maximum table size
505-
* -Merge LockMethodCtl and LockMethodTable into one shared structure (Bruce)
506-
* -HOLDER/HOLDERTAB rename to PROCLOCK/PROCLOCKTAG (Bruce)
507-
* -Remove LockMethodTable.prio field, not used (Bruce)
508403
* Rename some /contrib modules from pg* to pg_*
509404
* Move some things from /contrib into main tree
510405
* Remove warnings created by -Wcast-align
511406
* Move platform-specific ps status display info from ps_status.c to ports
512-
* -Make one version of simple_prompt() in code (Bruce, Tom)
513-
* -Compile in syslog functionaility by default (Tatsuo)
514407
* Modify regression tests to prevent failures do to minor numeric rounding
515408
* Add OpenBSD's getpeereid() call for local socket authentication (Bruce)
516409
* Improve access-permissions check on data directory in Cygwin (Tom)
517-
* -Report failure to find readline or zlib at end of configure run
518410
* Add --port flag to regression tests
519-
* -Increase identifier length (NAMEDATALEN) if small performance hit,
520-
* -Increase maximum number of function parameters if little wasted space
521411
* Add documentation for perl, including mention of DBI/DBD perl location
522412
* Add optional CRC checksum to heap and index pages
523413
* Change representation of whole-tuple parameters to functions
@@ -526,8 +416,6 @@ Source Code
526416
* Remove or relicense modules that are not under the BSD license, if possible
527417
* Remove memory/file descriptor freeing befor elog(ERROR) (Bruce)
528418
* Create native Win32 port [win32]
529-
* -Fix glibc's mktime() to handle pre-1970's dates
530-
* -Move /contrib/retep to gborg.postgresql.org
531419
* Acquire lock on a relation before building a relcache entry for it
532420
* Move dbmirror and rserv from /contrib to gborg.postgresql.org
533421

0 commit comments

Comments
 (0)