forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commit0579096
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 users58,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 errors79d58< * -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 work89d64< * -Add GUC parameter for DATESTYLE91,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 functions97d68< o -Store binary-compatible type information in the system104d74< o -Ensure we have array-eq operators for every built-in array type139,140d108< * -Remove brackets as multi-statement rule grouping, must use parens (Bruce)< * -Prevent aggregates from being used in rule WHERE clauses154d121< * -Allow UPDATE/DELETE on inherited table166d132< * -Add deleted bit to index tuples to reduce heap access176d141< * -Test hash index performance and discourage usage182d146< * -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 creation190d150< * -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 indexes214,216d167< o -Cluster all tables at once using pg_index.indisclustered set during< previous CLUSTER< o -Prevent loss of indexes, permissions, inheritance221d171< o -Allow specification of column names224d173< o -Change syntax to WITH DELIMITER, (keep old syntax around?)228d176< o -Generate failure on short COPY lines rather than pad NULLs242,243d189< o -Allow INSERT INTO my_table VALUES (a, b, c, DEFAULT, x, y, z, ...)< o -Disallow missing columns in INSERT ... (col) VALUES, per ANSI248,249d193< o -Add command to display locks< o -Add SET or BEGIN timeout parameter to cancel query251d194< 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 transaction264d203< o -Fix PL/PgSQL to handle quoted mixed-case identifiers287,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 resultSet307d238< o -Implement cancel() method on Statement309d239< o -Add support for CallableStatements311d240< o -Compile under jdk 1.4334d262< * -Allow oid to act as a foreign key337,338d264< * -Allow user to control trigger firing order (Tom)< * -Add ALTER TRIGGER ... RENAME341d266< * -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 identify367d281< * -Allow autocommit so always in a transaction block377d290< * -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 recycled465,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 Solaris503,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 run519,520d410< * -Increase identifier length (NAMEDATALEN) if small performance hit,< * -Increase maximum number of function parameters if little wasted space529,530d418< * -Fix glibc's mktime() to handle pre-1970's dates< * -Move /contrib/retep to gborg.postgresql.org1 parent308910d commit0579096
1 file changed
+2
-114
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1 | 1 | | |
2 | 2 | | |
3 | | - | |
| 3 | + | |
4 | 4 | | |
5 | 5 | | |
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | 13 | | |
| |||
35 | 35 | | |
36 | 36 | | |
37 | 37 | | |
38 | | - | |
39 | 38 | | |
40 | | - | |
41 | | - | |
42 | | - | |
43 | | - | |
44 | | - | |
45 | | - | |
46 | | - | |
47 | | - | |
48 | | - | |
49 | | - | |
50 | | - | |
51 | | - | |
52 | 39 | | |
53 | 40 | | |
54 | 41 | | |
55 | 42 | | |
56 | 43 | | |
57 | 44 | | |
58 | | - | |
59 | | - | |
60 | | - | |
61 | 45 | | |
62 | 46 | | |
63 | 47 | | |
64 | 48 | | |
65 | | - | |
66 | | - | |
67 | 49 | | |
68 | 50 | | |
69 | | - | |
70 | | - | |
71 | 51 | | |
72 | 52 | | |
73 | 53 | | |
| |||
76 | 56 | | |
77 | 57 | | |
78 | 58 | | |
79 | | - | |
80 | 59 | | |
81 | 60 | | |
82 | | - | |
83 | | - | |
84 | | - | |
85 | 61 | | |
86 | 62 | | |
87 | 63 | | |
88 | 64 | | |
89 | | - | |
90 | 65 | | |
91 | | - | |
92 | | - | |
93 | | - | |
94 | 66 | | |
95 | 67 | | |
96 | 68 | | |
97 | | - | |
98 | 69 | | |
99 | 70 | | |
100 | 71 | | |
101 | 72 | | |
102 | 73 | | |
103 | 74 | | |
104 | | - | |
105 | 75 | | |
106 | 76 | | |
107 | 77 | | |
| |||
136 | 106 | | |
137 | 107 | | |
138 | 108 | | |
139 | | - | |
140 | | - | |
141 | 109 | | |
142 | 110 | | |
143 | 111 | | |
| |||
151 | 119 | | |
152 | 120 | | |
153 | 121 | | |
154 | | - | |
155 | 122 | | |
156 | 123 | | |
157 | 124 | | |
| |||
163 | 130 | | |
164 | 131 | | |
165 | 132 | | |
166 | | - | |
167 | 133 | | |
168 | 134 | | |
169 | 135 | | |
| |||
173 | 139 | | |
174 | 140 | | |
175 | 141 | | |
176 | | - | |
177 | 142 | | |
178 | 143 | | |
179 | 144 | | |
180 | 145 | | |
181 | 146 | | |
182 | | - | |
183 | 147 | | |
184 | | - | |
185 | 148 | | |
186 | | - | |
187 | | - | |
188 | 149 | | |
189 | 150 | | |
190 | | - | |
191 | 151 | | |
192 | 152 | | |
193 | 153 | | |
| |||
198 | 158 | | |
199 | 159 | | |
200 | 160 | | |
201 | | - | |
202 | | - | |
203 | | - | |
204 | | - | |
205 | | - | |
206 | 161 | | |
207 | 162 | | |
208 | 163 | | |
209 | 164 | | |
210 | | - | |
211 | 165 | | |
212 | 166 | | |
213 | 167 | | |
214 | | - | |
215 | | - | |
216 | | - | |
217 | 168 | | |
218 | 169 | | |
219 | 170 | | |
220 | 171 | | |
221 | | - | |
222 | 172 | | |
223 | 173 | | |
224 | | - | |
225 | 174 | | |
226 | 175 | | |
227 | 176 | | |
228 | | - | |
229 | 177 | | |
230 | 178 | | |
231 | 179 | | |
| |||
239 | 187 | | |
240 | 188 | | |
241 | 189 | | |
242 | | - | |
243 | | - | |
244 | 190 | | |
245 | 191 | | |
246 | 192 | | |
247 | 193 | | |
248 | | - | |
249 | | - | |
250 | 194 | | |
251 | | - | |
252 | 195 | | |
253 | 196 | | |
254 | | - | |
255 | | - | |
256 | | - | |
257 | 197 | | |
258 | 198 | | |
259 | 199 | | |
260 | 200 | | |
261 | 201 | | |
262 | 202 | | |
263 | 203 | | |
264 | | - | |
265 | 204 | | |
266 | 205 | | |
267 | 206 | | |
| |||
284 | 223 | | |
285 | 224 | | |
286 | 225 | | |
287 | | - | |
288 | | - | |
289 | | - | |
290 | | - | |
291 | | - | |
292 | 226 | | |
293 | 227 | | |
294 | | - | |
295 | 228 | | |
296 | 229 | | |
297 | 230 | | |
298 | 231 | | |
299 | 232 | | |
300 | 233 | | |
301 | 234 | | |
302 | | - | |
303 | 235 | | |
304 | 236 | | |
305 | 237 | | |
306 | 238 | | |
307 | | - | |
308 | 239 | | |
309 | | - | |
310 | 240 | | |
311 | | - | |
312 | 241 | | |
313 | 242 | | |
314 | 243 | | |
| |||
331 | 260 | | |
332 | 261 | | |
333 | 262 | | |
334 | | - | |
335 | 263 | | |
336 | 264 | | |
337 | | - | |
338 | | - | |
339 | 265 | | |
340 | 266 | | |
341 | | - | |
342 | 267 | | |
343 | 268 | | |
344 | 269 | | |
| |||
347 | 272 | | |
348 | 273 | | |
349 | 274 | | |
350 | | - | |
351 | | - | |
352 | | - | |
353 | | - | |
354 | | - | |
355 | | - | |
356 | | - | |
357 | | - | |
358 | | - | |
359 | | - | |
360 | 275 | | |
361 | 276 | | |
362 | 277 | | |
363 | 278 | | |
364 | 279 | | |
365 | 280 | | |
366 | 281 | | |
367 | | - | |
368 | 282 | | |
369 | 283 | | |
370 | 284 | | |
| |||
374 | 288 | | |
375 | 289 | | |
376 | 290 | | |
377 | | - | |
378 | 291 | | |
379 | 292 | | |
380 | 293 | | |
| |||
397 | 310 | | |
398 | 311 | | |
399 | 312 | | |
400 | | - | |
401 | 313 | | |
402 | 314 | | |
403 | 315 | | |
| |||
436 | 348 | | |
437 | 349 | | |
438 | 350 | | |
439 | | - | |
440 | 351 | | |
441 | 352 | | |
442 | 353 | | |
| |||
447 | 358 | | |
448 | 359 | | |
449 | 360 | | |
450 | | - | |
451 | | - | |
452 | 361 | | |
453 | 362 | | |
454 | 363 | | |
| |||
462 | 371 | | |
463 | 372 | | |
464 | 373 | | |
465 | | - | |
466 | | - | |
467 | 374 | | |
468 | | - | |
469 | 375 | | |
470 | | - | |
471 | | - | |
472 | | - | |
473 | 376 | | |
474 | 377 | | |
475 | 378 | | |
| |||
491 | 394 | | |
492 | 395 | | |
493 | 396 | | |
494 | | - | |
495 | | - | |
496 | | - | |
497 | 397 | | |
498 | 398 | | |
499 | 399 | | |
500 | 400 | | |
501 | 401 | | |
502 | 402 | | |
503 | | - | |
504 | | - | |
505 | | - | |
506 | | - | |
507 | | - | |
508 | 403 | | |
509 | 404 | | |
510 | 405 | | |
511 | 406 | | |
512 | | - | |
513 | | - | |
514 | 407 | | |
515 | 408 | | |
516 | 409 | | |
517 | | - | |
518 | 410 | | |
519 | | - | |
520 | | - | |
521 | 411 | | |
522 | 412 | | |
523 | 413 | | |
| |||
526 | 416 | | |
527 | 417 | | |
528 | 418 | | |
529 | | - | |
530 | | - | |
531 | 419 | | |
532 | 420 | | |
533 | 421 | | |
| |||
0 commit comments
Comments
(0)