Appendix E. Release Notes

Table of Contents
E.1. Release 8.0.18
E.2. Release 8.0.17
E.3. Release 8.0.16
E.4. Release 8.0.15
E.5. Release 8.0.14
E.6. Release 8.0.13
E.7. Release 8.0.12
E.8. Release 8.0.11
E.9. Release 8.0.10
E.10. Release 8.0.9
E.11. Release 8.0.8
E.12. Release 8.0.7
E.13. Release 8.0.6
E.14. Release 8.0.5
E.15. Release 8.0.4
E.16. Release 8.0.3
E.17. Release 8.0.2
E.18. Release 8.0.1
E.19. Release 8.0
E.20. Release 7.4.22
E.21. Release 7.4.21
E.22. Release 7.4.20
E.23. Release 7.4.19
E.24. Release 7.4.18
E.25. Release 7.4.17
E.26. Release 7.4.16
E.27. Release 7.4.15
E.28. Release 7.4.14
E.29. Release 7.4.13
E.30. Release 7.4.12
E.31. Release 7.4.11
E.32. Release 7.4.10
E.33. Release 7.4.9
E.34. Release 7.4.8
E.35. Release 7.4.7
E.36. Release 7.4.6
E.37. Release 7.4.5
E.38. Release 7.4.4
E.39. Release 7.4.3
E.40. Release 7.4.2
E.41. Release 7.4.1
E.42. Release 7.4
E.43. Release 7.3.21
E.44. Release 7.3.20
E.45. Release 7.3.19
E.46. Release 7.3.18
E.47. Release 7.3.17
E.48. Release 7.3.16
E.49. Release 7.3.15
E.50. Release 7.3.14
E.51. Release 7.3.13
E.52. Release 7.3.12
E.53. Release 7.3.11
E.54. Release 7.3.10
E.55. Release 7.3.9
E.56. Release 7.3.8
E.57. Release 7.3.7
E.58. Release 7.3.6
E.59. Release 7.3.5
E.60. Release 7.3.4
E.61. Release 7.3.3
E.62. Release 7.3.2
E.63. Release 7.3.1
E.64. Release 7.3
E.65. Release 7.2.8
E.66. Release 7.2.7
E.67. Release 7.2.6
E.68. Release 7.2.5
E.69. Release 7.2.4
E.70. Release 7.2.3
E.71. Release 7.2.2
E.72. Release 7.2.1
E.73. Release 7.2
E.74. Release 7.1.3
E.75. Release 7.1.2
E.76. Release 7.1.1
E.77. Release 7.1
E.78. Release 7.0.3
E.79. Release 7.0.2
E.80. Release 7.0.1
E.81. Release 7.0
E.82. Release 6.5.3
E.83. Release 6.5.2
E.84. Release 6.5.1
E.85. Release 6.5
E.86. Release 6.4.2
E.87. Release 6.4.1
E.88. Release 6.4
E.89. Release 6.3.2
E.90. Release 6.3.1
E.91. Release 6.3
E.92. Release 6.2.1
E.93. Release 6.2
E.94. Release 6.1.1
E.95. Release 6.1
E.96. Release 6.0
E.97. Release 1.09
E.98. Release 1.02
E.99. Release 1.01
E.100. Release 1.0
E.101. Postgres95 Release 0.03
E.102. Postgres95 Release 0.02
E.103. Postgres95 Release 0.01

The release notes contain the significant changes in each PostgreSQL release, with major features and migration issues listed at the top. The release notes do not contain changes that affect only a few users or changes that are internal and therefore not user-visible. For example, the optimizer is improved in almost every release, but the improvements are usually observed by users as simply faster queries.

A complete list of changes for each release can be obtained by viewing the CVS logs for each release. The pgsql-committers email list contains all source code changes as well. There is also a web interface that shows changes to specific files.

The name appearing next to each item represents the major developer for that item. Of course all changes involve community discussion and patch review, so each item is truly a community effort.

E.1. Release 8.0.18

Release date: 2008-09-22

This release contains a variety of fixes from 8.0.17. For information about new features in the 8.0 major release, see Section E.19.

E.1.1. Migration to Version 8.0.18

A dump/restore is not required for those running 8.0.X. However, if you are upgrading from a version earlier than 8.0.6, see the release notes for 8.0.6.

E.1.2. Changes

  • Widen local lock counters from 32 to 64 bits (Tom)

    This responds to reports that the counters could overflow in sufficiently long transactions, leading to unexpected "lock is already held" errors.

  • Add checks in executor startup to ensure that the tuples produced by an INSERT or UPDATE will match the target table's current rowtype (Tom)

    ALTER COLUMN TYPE, followed by re-use of a previously cached plan, could produce this type of situation. The check protects against data corruption and/or crashes that could ensue.

  • Fix datetime input functions to correctly detect integer overflow when running on a 64-bit platform (Tom)

  • Improve performance of writing very long log messages to syslog (Tom)

  • Fix bug in backwards scanning of a cursor on a SELECT DISTINCT ON query (Tom)

  • Fix planner to estimate that GROUP BY expressions yielding boolean results always result in two groups, regardless of the expressions' contents (Tom)

    This is very substantially more accurate than the regular GROUP BY estimate for certain boolean tests like col IS NULL.

  • Fix PL/Tcl to behave correctly with Tcl 8.5, and to be more careful about the encoding of data sent to or from Tcl (Tom)

  • Fix PL/Python to work with Python 2.5

    This is a back-port of fixes made during the 8.2 development cycle.

  • Improve pg_dump and pg_restore's error reporting after failure to send a SQL command (Tom)

  • Fix pg_ctl to properly preserve postmaster command-line arguments across a restart (Bruce)

  • Update time zone data files to tzdata release 2008f (for DST law changes in Argentina, Bahamas, Brazil, Mauritius, Morocco, Pakistan, Palestine, and Paraguay)