File tree Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Original file line number Diff line number Diff line change 2
2
PostgreSQL TODO List
3
3
====================
4
4
Current maintainer: Bruce Momjian (pgman@candle.pha.pa.us)
5
- Last updated: Mon Mar 6 17:51:00 EST 2006
5
+ Last updated: Sat Apr 8 23:26:57 EDT 2006
6
6
7
7
The most recent version of this document can be viewed at
8
8
http://www.postgresql.org/docs/faqs.TODO.html.
@@ -827,7 +827,14 @@ Indexes
827
827
* Allow accurate statistics to be collected on indexes with more than
828
828
one column or expression indexes, perhaps using per-index statistics
829
829
* Add fillfactor to control reserved free space during index creation
830
- * Allow the creation of indexes with mixed ascending/descending specifiers
830
+ * Allow the creation of indexes with mixed ascending/descending
831
+ specifiers
832
+
833
+ This is possible now by creating an operator class with reversed sort
834
+ operators. One complexity is that NULLs would then appear at the start
835
+ of the result set, and this might affect certain sort types, like
836
+ merge join.
837
+
831
838
* Allow constraint_exclusion to work for UNIONs like it does for
832
839
inheritance, allow it to work for UPDATE and DELETE statements, and allow
833
840
it to be used for all statements with little performance impact
Original file line number Diff line number Diff line change 8
8
< body bgcolor ="#FFFFFF " text ="#000000 " link ="#FF0000 " vlink ="#A00000 " alink ="#0000FF ">
9
9
< h1 > < a name ="section_1 "> PostgreSQL TODO List</ a > </ h1 >
10
10
< p > Current maintainer: Bruce Momjian (< a href ="mailto:pgman@candle.pha.pa.us "> pgman@candle.pha.pa.us</ a > )< br />
11
- Last updated: Mon Mar 6 17:51:00 EST 2006
11
+ Last updated: Sat Apr 8 23:26:57 EDT 2006
12
12
</ p >
13
13
< p > The most recent version of this document can be viewed at< br />
14
14
< a href ="http://www.postgresql.org/docs/faqs.TODO.html "> http://www.postgresql.org/docs/faqs.TODO.html</ a > .
@@ -752,7 +752,13 @@ <h1><a name="section_13">Indexes</a></h1>
752
752
</ li > < li > Allow accurate statistics to be collected on indexes with more than
753
753
one column or expression indexes, perhaps using per-index statistics
754
754
</ li > < li > Add fillfactor to control reserved free space during index creation
755
- </ li > < li > Allow the creation of indexes with mixed ascending/descending specifiers
755
+ </ li > < li > Allow the creation of indexes with mixed ascending/descending
756
+ specifiers
757
+ < p > This is possible now by creating an operator class with reversed sort
758
+ operators. One complexity is that NULLs would then appear at the start
759
+ of the result set, and this might affect certain sort types, like
760
+ merge join.
761
+ </ p >
756
762
</ li > < li > Allow constraint_exclusion to work for UNIONs like it does for
757
763
inheritance, allow it to work for UPDATE and DELETE statements, and allow
758
764
it to be used for all statements with little performance impact
You can’t perform that action at this time.
0 commit comments