Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitd58c70c

Browse files
committed
Update per Tom:
< * Allow INET subnet tests using non-constants> * Allow INET subnet tests to use indexes101a102> o Allow MIN()/MAX() on arrays144c145< * Allow CREATE INDEX zman_index ON test (date_trunc( 'day', zman ) datetime_ops)> * -Allow CREATE INDEX zman_index ON test (date_trunc( 'day', zman ) datetime_ops)166c167< * Improve handling of index scans for NULL> * Allow use of indexes to search for NULLs203a205> * Add optional textual message to NOTIFY252c254< o Add SET SCHEMA> o Add SET PATH for schemas297a300> * Allow fastpast to pass values in portable format344a348> * Allow statement-level triggers to access modified rows526d529< o Add optional textual message to NOTIFY530d532< o Allow fastpast to pass values in portable format533c535< o Special passing of binary values in platform-neutral format (bytea?)> o -Special passing of binary values in platform-neutral format (bytea?)
1 parent2f603a8 commitd58c70c

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

‎doc/TODO

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
TODO list for PostgreSQL
22
========================
3-
Last updated:Thu Oct16 00:12:51 EDT 2003
3+
Last updated:Mon Oct20 22:47:57 EDT 2003
44

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

@@ -77,7 +77,7 @@ Data Types
7777
* -Change NUMERIC data type to use base 10,000 internally
7878
* Change NUMERIC to enforce the maximum precision, and increase it
7979
* Add function to return compressed length of TOAST data values (Tom)
80-
* Allow INET subnet testsusing non-constants
80+
* Allow INET subnet teststo use indexes
8181
* Add transaction_timestamp(), statement_timestamp(), clock_timestamp() functionality
8282
* -Add GUC variables to control floating number output digits (Pedro Ferreira)
8383
* Have sequence dependency track use of DEFAULT sequences, seqname.nextval
@@ -99,6 +99,7 @@ Data Types
9999
* ARRAYS
100100
o Allow nulls in arrays
101101
o -Allow arrays to be ORDER'ed
102+
o Allow MIN()/MAX() on arrays
102103
o -Support construction of array result values in expressions (Joe)
103104
o Delay resolution of array expression type so assignment coercion
104105
can be performed on empty array expressions (Joe)
@@ -141,7 +142,7 @@ Views / Rules
141142
Indexes
142143
=======
143144

144-
* Allow CREATE INDEX zman_index ON test (date_trunc( 'day', zman ) datetime_ops)
145+
*-Allow CREATE INDEX zman_index ON test (date_trunc( 'day', zman ) datetime_ops)
145146
fails index can't store constant parameters
146147
* Order duplicate index entries by tid for faster heap lookups
147148
* Allow inherited tables to inherit index, UNIQUE constraint, and primary
@@ -163,7 +164,7 @@ Indexes
163164
* Prevent index uniqueness checks when UPDATE does not modify the column
164165
* Use bitmaps to fetch heap pages in sequential order [performance]
165166
* Use bitmaps to combine existing indexes [performance]
166-
*Improve handling ofindex scansforNULL
167+
*Allow use ofindexes to searchforNULLs
167168
* Allow SELECT * FROM tab WHERE int2col = 4 to use int2col index, int8,
168169
float4, numeric/decimal too [optimizer]
169170
* Add FILLFACTOR to btree index creation
@@ -201,6 +202,7 @@ Commands
201202
* Allow LISTEN/NOTIFY to store info in memory rather than tables
202203
* COMMENT ON [ CAST | CONVERSION | OPERATOR CLASS | LARGE OBJECT | LANGUAGE ]
203204
(Christopher)
205+
* Add optional textual message to NOTIFY
204206

205207

206208
* ALTER
@@ -249,7 +251,7 @@ Commands
249251
* SHOW/SET
250252
o Add SET PERFORMANCE_TIPS option to suggest INDEX, VACUUM, VACUUM
251253
ANALYZE, and CLUSTER
252-
o Add SETSCHEMA
254+
o Add SETPATH for schemas
253255
o -Allow EXPLAIN EXECUTE to see prepared plans
254256
o -Allow SHOW of some non-modifiable variables, like pg_controldata
255257

@@ -295,6 +297,7 @@ Clients
295297
* Add a libpq function to support Parse/DescribeStatement capability
296298
* Prevent libpq's PQfnumber() from lowercasing the column name
297299
* Allow pg_dump to dump CREATE CONVERSION (Christopher)
300+
* Allow fastpast to pass values in portable format
298301

299302

300303
* JDBC
@@ -342,6 +345,7 @@ Referential Integrity
342345
* Allow triggers to be disabled [trigger]
343346
* With disabled triggers, allow pg_dump to use ALTER TABLE ADD FOREIGN KEY
344347
* -Support statement-level triggers (Neil)
348+
* Allow statement-level triggers to access modified rows
345349
* Support triggers on columns (Neil)
346350
* Have AFTER triggers execute after the appropriate SQL statement in a
347351
function, not at the end of the function
@@ -510,7 +514,7 @@ Source Code
510514
* Acquire lock on a relation before building a relcache entry for it
511515
* Research interaction of setitimer() and sleep() used by statement_timeout
512516
* Add checks for fclose() failure
513-
* Change CVS $Id: TODO,v 1.1152 2003/10/16 04:12:53 momjian Exp $ to $PostgreSQL: pgsql/doc/TODO,v 1.1152 2003/10/16 04:12:53 momjian Exp $
517+
* Change CVS $Id: TODO,v 1.1153 2003/10/21 02:48:09 momjian Exp $ to $PostgreSQL: pgsql/doc/TODO,v 1.1153 2003/10/21 02:48:09 momjian Exp $
514518
* Exit postmaster if postgresql.conf can not be opened
515519
* Rename /scripts directory because they are all C programs now
516520
* Allow the regression tests to start postmaster with -i so the tests
@@ -523,14 +527,12 @@ Source Code
523527
* Wire Protocol Changes
524528
o -Show transaction status in psql
525529
o -Allow binding of query parameters, support for prepared queries
526-
o Add optional textual message to NOTIFY
527530
o -Remove hard-coded limits on user/db/password names
528531
o -Remove unused elements of startup packet (unused, tty, passlength)
529532
o -Fix COPY/fastpath protocol
530-
o Allow fastpast to pass values in portable format
531533
o -Error codes
532534
o Dynamic character set handling
533-
o Special passing of binary values in platform-neutral format (bytea?)
535+
o-Special passing of binary values in platform-neutral format (bytea?)
534536
o Add decoded type, length, precision
535537
o Compression?
536538
o -Report server version number, database encoding, client encoding

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp