forked frompostgres/postgres
- Notifications
You must be signed in to change notification settings - Fork6
Commitaa3f396
committed
Remove completed TODO items:
< * -Make postmater and postgres options distinct so the postmaster -o< option is no longer needed< * -Allow pooled connections to list all prepared statements<< This would allow an application inheriting a pooled connection to know< the statements prepared in the current session.<< * -Re-enable the GUC full_page_writes in 8.2 when reliability issues have< been addressed< o -Add "include file" functionality in postgresql.conf< o -Allow per-database permissions to be set via GRANT<< Allow database connection checks based on GRANT rules in< addition to the existing access checks in pg_hba.conf.<< o -Issue a warning if a change-on-restart-only postgresql.conf value> o Issue a warning if a change-on-restart-only postgresql.conf value< o -Automatically force archiving of partially-filled WAL files when< pg_stop_backup() is called or the server is stopped< o -Add reporting of the current WAL file and offset, perhaps as< part of partial log file archiving< * -Allow server logs to be remotely read and removed using SQL commands< * -Allow protocol-level BIND parameter values to be logged< * -Zero umasked bits in conversion from INET cast to CIDR< * -Prevent INET cast to CIDR from dropping netmask, SELECT '1.1.1.1'::inet::cidr< * -Allow INET + INT8 to increment the host part of the address or< throw an error on overflow< * -Add 'tid != tid ' operator for use in corruption recovery< o -Allow customization of the known set of TZ names (generalize the< present australian_timezones hack)< o -Allow timezone names in SQL strings, '2006-05-24 21:11< Americas/New_York'::timestamptz< o -Add support for day-time syntax, INTERVAL '1 2:03:04' DAY TO< SECOND< o -Allow NULLs in arrays< * -Add transaction_timestamp(), statement_timestamp(), clock_timestamp()< functionality<< Current CURRENT_TIMESTAMP returns the start time of the current< transaction, and gettimeofday() returns the wallclock time. This will< make time reporting more consistent and will allow reporting of< the statement start time.<< * -Allow to_char() to print localized month names< * -Add sleep() function, remove from regress.c< * -Allow user-defined functions retuning a domain value to enforce domain< constraints< * -Allow TRUNCATE ... CASCADE/RESTRICT<< This is like DELETE CASCADE, but truncates.<< * -Add COMMENT ON for all cluster global objects (roles, databases< and tablespaces)< * -Make row-wise comparisons work per SQL spec<< Right now, '(a, b) < (1, 2)' is processed as 'a < 1 and b < 2', but< the SQL standard requires it to be processed as a column-by-column< comparison, so the proper comparison is '(a < 1) OR (a = 1 AND b < 2)'.<< * -Enable escape_string_warning and standard_conforming_strings> * Enable standard_conforming_strings< o -Add ON COMMIT capability to CREATE TABLE AS ... SELECT< o -Allow an alias to be provided for the target table in< UPDATE/DELETE (Neil)< o -Allow UPDATE tab SET ROW (col, ...) = (val, ...) for updating< multiple columns< o -Add ALTER TABLE tab INHERIT / NO INHERIT parent< o -Have COPY return the number of rows loaded/unloaded?< o -Allow COPY (SELECT ...) TO 'filename'<< o -Allow pooled connections to list all open WITH HOLD cursors<< Because WITH HOLD cursors exist outside transactions, this allows< them to be listed so they can be closed.<< o -Allow INSERT INTO tab (col1, ..) VALUES (val1, ..), (val2, ..)< o -Allow INSERT/UPDATE ... RETURNING new.col or old.col< o -Allow PL/python to return composite types and result sets<< * -Have initdb set the input DateStyle (MDY or DMY) based on locale< o -Improve psql's handling of multi-line statements<< Currently, while \e saves a single statement as one entry, interactive< statements are saved one line at a time. Ideally all statements< would be saved like \e does.<< o -Allow multi-line column values to align in the proper columns<< If the second output column value is 'a\nb', the 'b' should appear< in the second display column, rather than the first column as it< does now.<< o -Display IN, INOUT, and OUT parameters in \df< o -Allow pg_dump to use multiple -t and -n switches, exclusion< ability, and regular expression object matching< o -Update pg_dump and psql to use the new COPY libpq API (Christopher)< o -Add a function to support Parse/DescribeStatement capability< * -Add fillfactor to control reserved free space during index creation< * -Add system view to show free space map contents< * -Allow installing to directories containing spaces<< This is possible if proper quoting is added to the makefiles for the< install targets. Because PostgreSQL supports relocatable installs, it< is already possible to install into a directory that doesn't contain< spaces and then copy the install to a directory with spaces.<< * -%Clean up compiler warnings (especially with gcc version 4)< * -Remove BeOS and QNX-specific code< o -Port contrib/xml21 parentf7ea4ee commitaa3f396
2 files changed
+14
-213
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2 | 2 | | |
3 | 3 | | |
4 | 4 | | |
5 | | - | |
| 5 | + | |
6 | 6 | | |
7 | 7 | | |
8 | 8 | | |
| |||
20 | 20 | | |
21 | 21 | | |
22 | 22 | | |
23 | | - | |
24 | | - | |
25 | | - | |
26 | | - | |
27 | | - | |
28 | | - | |
29 | | - | |
30 | 23 | | |
31 | 24 | | |
32 | 25 | | |
| |||
62 | 55 | | |
63 | 56 | | |
64 | 57 | | |
65 | | - | |
66 | | - | |
67 | 58 | | |
68 | 59 | | |
69 | 60 | | |
| |||
87 | 78 | | |
88 | 79 | | |
89 | 80 | | |
90 | | - | |
91 | 81 | | |
92 | 82 | | |
93 | 83 | | |
94 | 84 | | |
95 | 85 | | |
96 | 86 | | |
97 | 87 | | |
98 | | - | |
99 | | - | |
100 | | - | |
101 | | - | |
102 | | - | |
103 | 88 | | |
104 | 89 | | |
105 | 90 | | |
| |||
112 | 97 | | |
113 | 98 | | |
114 | 99 | | |
115 | | - | |
| 100 | + | |
116 | 101 | | |
117 | 102 | | |
118 | 103 | | |
| |||
160 | 145 | | |
161 | 146 | | |
162 | 147 | | |
163 | | - | |
164 | | - | |
165 | | - | |
166 | | - | |
167 | 148 | | |
168 | 149 | | |
169 | 150 | | |
| |||
183 | 164 | | |
184 | 165 | | |
185 | 166 | | |
186 | | - | |
187 | | - | |
188 | 167 | | |
189 | 168 | | |
190 | 169 | | |
| |||
209 | 188 | | |
210 | 189 | | |
211 | 190 | | |
212 | | - | |
213 | | - | |
214 | | - | |
215 | | - | |
216 | | - | |
217 | 191 | | |
218 | 192 | | |
219 | 193 | | |
| |||
251 | 225 | | |
252 | 226 | | |
253 | 227 | | |
254 | | - | |
255 | | - | |
256 | 228 | | |
257 | 229 | | |
258 | 230 | | |
259 | 231 | | |
260 | 232 | | |
261 | 233 | | |
262 | | - | |
263 | | - | |
264 | 234 | | |
265 | 235 | | |
266 | 236 | | |
| |||
280 | 250 | | |
281 | 251 | | |
282 | 252 | | |
283 | | - | |
284 | | - | |
285 | 253 | | |
286 | 254 | | |
287 | 255 | | |
| |||
314 | 282 | | |
315 | 283 | | |
316 | 284 | | |
317 | | - | |
318 | 285 | | |
319 | 286 | | |
320 | 287 | | |
| |||
342 | 309 | | |
343 | 310 | | |
344 | 311 | | |
345 | | - | |
346 | | - | |
347 | | - | |
348 | | - | |
349 | | - | |
350 | | - | |
351 | | - | |
352 | | - | |
353 | 312 | | |
354 | 313 | | |
355 | 314 | | |
356 | 315 | | |
357 | 316 | | |
358 | | - | |
359 | 317 | | |
360 | 318 | | |
361 | 319 | | |
| |||
376 | 334 | | |
377 | 335 | | |
378 | 336 | | |
379 | | - | |
380 | | - | |
381 | | - | |
382 | 337 | | |
383 | 338 | | |
384 | 339 | | |
| |||
448 | 403 | | |
449 | 404 | | |
450 | 405 | | |
451 | | - | |
452 | | - | |
453 | | - | |
454 | | - | |
455 | 406 | | |
456 | 407 | | |
457 | 408 | | |
| |||
497 | 448 | | |
498 | 449 | | |
499 | 450 | | |
500 | | - | |
501 | | - | |
502 | | - | |
503 | | - | |
504 | | - | |
505 | | - | |
506 | | - | |
507 | | - | |
508 | 451 | | |
509 | 452 | | |
510 | 453 | | |
| |||
521 | 464 | | |
522 | 465 | | |
523 | 466 | | |
524 | | - | |
| 467 | + | |
525 | 468 | | |
526 | 469 | | |
527 | 470 | | |
| |||
556 | 499 | | |
557 | 500 | | |
558 | 501 | | |
559 | | - | |
560 | 502 | | |
561 | 503 | | |
562 | 504 | | |
563 | | - | |
564 | | - | |
565 | | - | |
566 | | - | |
567 | 505 | | |
568 | 506 | | |
569 | 507 | | |
| |||
591 | 529 | | |
592 | 530 | | |
593 | 531 | | |
594 | | - | |
595 | 532 | | |
596 | 533 | | |
597 | 534 | | |
| |||
622 | 559 | | |
623 | 560 | | |
624 | 561 | | |
625 | | - | |
626 | 562 | | |
627 | 563 | | |
628 | 564 | | |
| |||
631 | 567 | | |
632 | 568 | | |
633 | 569 | | |
634 | | - | |
635 | | - | |
636 | 570 | | |
637 | 571 | | |
638 | 572 | | |
| |||
662 | 596 | | |
663 | 597 | | |
664 | 598 | | |
665 | | - | |
666 | | - | |
667 | | - | |
668 | | - | |
669 | | - | |
670 | 599 | | |
671 | 600 | | |
672 | 601 | | |
673 | 602 | | |
674 | | - | |
675 | | - | |
676 | 603 | | |
677 | 604 | | |
678 | 605 | | |
| |||
763 | 690 | | |
764 | 691 | | |
765 | 692 | | |
766 | | - | |
767 | | - | |
768 | 693 | | |
769 | 694 | | |
770 | 695 | | |
771 | 696 | | |
772 | | - | |
773 | 697 | | |
774 | 698 | | |
775 | 699 | | |
| |||
797 | 721 | | |
798 | 722 | | |
799 | 723 | | |
800 | | - | |
801 | | - | |
802 | | - | |
803 | | - | |
804 | | - | |
805 | | - | |
806 | | - | |
807 | | - | |
808 | | - | |
809 | | - | |
810 | | - | |
811 | | - | |
812 | | - | |
813 | 724 | | |
814 | 725 | | |
815 | 726 | | |
| |||
827 | 738 | | |
828 | 739 | | |
829 | 740 | | |
830 | | - | |
831 | | - | |
832 | 741 | | |
833 | 742 | | |
834 | 743 | | |
835 | 744 | | |
836 | | - | |
837 | 745 | | |
838 | 746 | | |
839 | 747 | | |
| |||
869 | 777 | | |
870 | 778 | | |
871 | 779 | | |
872 | | - | |
873 | 780 | | |
874 | 781 | | |
875 | 782 | | |
| |||
1001 | 908 | | |
1002 | 909 | | |
1003 | 910 | | |
1004 | | - | |
1005 | 911 | | |
1006 | 912 | | |
1007 | 913 | | |
| |||
1151 | 1057 | | |
1152 | 1058 | | |
1153 | 1059 | | |
1154 | | - | |
1155 | 1060 | | |
1156 | 1061 | | |
1157 | 1062 | | |
| |||
1402 | 1307 | | |
1403 | 1308 | | |
1404 | 1309 | | |
1405 | | - | |
1406 | | - | |
1407 | | - | |
1408 | | - | |
1409 | | - | |
1410 | | - | |
1411 | | - | |
1412 | 1310 | | |
1413 | | - | |
1414 | 1311 | | |
1415 | 1312 | | |
1416 | 1313 | | |
1417 | | - | |
1418 | 1314 | | |
1419 | 1315 | | |
1420 | 1316 | | |
| |||
1452 | 1348 | | |
1453 | 1349 | | |
1454 | 1350 | | |
1455 | | - | |
1456 | 1351 | | |
1457 | 1352 | | |
1458 | 1353 | | |
| |||
0 commit comments
Comments
(0)