@@ -341,7 +341,7 @@ Functions
341
341
* Add ISO day of week format 'ID' to to_char() where Monday = 1
342
342
* Add a field 'isoyear' to extract(), based on the ISO week
343
343
* Add SPI_gettypmod() to return the typemod for a TupleDesc
344
- * Allow inlining of set-returning functions
344
+ * Implement inlining of set-returning functions defined in SQL
345
345
* Allow SQL-language functions to return results from RETURNING queries
346
346
347
347
@@ -928,6 +928,8 @@ Indexes
928
928
several hash buckets could be stored on a single page and greater
929
929
granularity used for the hash algorithm.
930
930
931
+ http://archives.postgresql.org/pgsql-hackers/2004-06/msg00168.php
932
+
931
933
o Consider sorting hash buckets so entries can be found using a
932
934
binary search, rather than a linear scan
933
935
@@ -972,6 +974,13 @@ Cache Usage
972
974
faster than a sequential scan it must avoid access to the heap
973
975
to obtain tuple visibility information.
974
976
977
+ * Provide a way to calculate an "estimated COUNT(*)"
978
+
979
+ Perhaps by using the optimizer's cardinality estimates or random
980
+ sampling.
981
+
982
+ http://archives.postgresql.org/pgsql-hackers/2005-11/msg00943.php
983
+
975
984
* Allow data to be pulled directly from indexes
976
985
977
986
Currently indexes do not have enough tuple visibility information
@@ -1075,6 +1084,9 @@ Locking
1075
1084
1076
1085
* Fix priority ordering of read and write light-weight locks (Neil)
1077
1086
1087
+ http://archives.postgresql.org/pgsql-hackers/2004-11/msg00893.php
1088
+ http://archives.postgresql.org/pgsql-hackers/2004-11/msg00905.php
1089
+
1078
1090
1079
1091
Startup Time Improvements
1080
1092
=========================
0 commit comments