| PostgreSQL 7.4 文檔 | ||||
|---|---|---|---|---|
| Prev | Fast Backward | Appendix E. 版本信息 | Fast Forward | Next |
發布日期: 1997-10-17
v6.2.1 是 v6.2 的除錯版本和增強可用性版本.
概述:
允許字符串跨行,類似 SQL92.
包括了一個觸發器的樣例函數,用于在更新表時插入用戶名.
這是對v6.2的一個小的除錯版本.對于從 v6.2 以前的系統上升級, 需要進行一次完整的輸出/恢復工作.請參考 v6.2版本信息獲取相關指導.
這是一次小的除錯升級.從v6.2上升級不需要進行傾倒/恢復, 但對任何v6.2以前的版本是需要的.
當你從 v6.2 上升級時,如果你選擇了輸出/恢復的做法, 你將會發現 avg(money) 現在可以正確運算了.所有其他 的升級在升級了可執行程序後都將生效.
另一個避免輸出/恢復的做法是在 psql 中使用下面的 SQL 命令來升級現有的系統表:
update pg_aggregate set aggfinalfn = 'cash_div_flt8' where aggname = 'avg' and aggbasetype = 790;
我們需要對包括 template1 在內的所有現有數據庫進行上面操作.
Allow TIME and TYPE column names(Thomas)
Allow larger range of true/false as boolean values(Thomas)
Support output of "now" and "current"(Thomas)
Handle DEFAULT with INSERT of NULL properly(Vadim)
Fix for relation reference counts problem in buffer manager(Vadim)
Allow strings to span lines, like ANSI(Thomas)
Fix for backward cursor with ORDER BY(Vadim)
Fix avg(cash) computation(Thomas)
Fix for specifying a column twice in ORDER/GROUP BY(Vadim)
Documented new libpq function to return affected rows, PQcmdTuples(Bruce)
Trigger function for inserting user names for INSERT/UPDATE(Brook Milligan)