46
46
Function-inlining for simple SQL functions
47
47
Simple SQL functions can now be inlined by including their SQL
48
48
in the main query. This improves performance by eliminating
49
- per-call overhead. That means, simple SQL functions now behave
49
+ per-call overhead. That means simple SQL functions now behave
50
50
like macros.
51
51
52
52
Full support for IPv6 connections and IPv6 address data types
58
58
Several people very familiar with the SSL API have overhauled
59
59
our SSL code to improve SSL key negotiation and error recovery.
60
60
61
- Make free space map to efficiently reuse empty index pages, and other
61
+ Make free space map efficiently reuse empty index pages, and other
62
62
free space management improvements
63
63
In previous releases, B-tree index pages that were left empty
64
64
because of deleted rows could only be reused by rows with index
65
- values similar to the original rows indexed on that page. In
65
+ values similar to the rows originally indexed on that page. In
66
66
7.4, "VACUUM" records empty index pages and allows them to be
67
67
reused for any future index rows.
68
68
71
71
to access information about the schema objects defined in a
72
72
database.
73
73
74
- Cursors conform more closely with the SQL standard
74
+ Cursors conform more closely to the SQL standard
75
75
The commands "FETCH" and "MOVE" have been overhauled to conform
76
76
more closely to the SQL standard.
77
77
78
78
Cursors can exist outside transactions
79
- These cursors are also called holdable cursors
79
+ These cursors are also called holdable cursors.
80
80
81
81
New client-to-server protocol
82
82
The new protocol adds error codes, more status information,
124
124
Significant effort was invested to make the messages more
125
125
consistent and user-oriented. If your applications try to detect
126
126
different error conditions by parsing the error message, you are
127
- strongly encourage to use the new error code facility.
127
+ strongly encouraged to use the new error code facility instead .
128
128
* Inner joins using the explicit JOIN syntax may behave differently
129
129
because they are now better optimized.
130
130
* A number of server configuration parameters have been renamed for
@@ -238,8 +238,8 @@ Performance Improvements
238
238
of function-allocated memory when the function call completes,
239
239
reducing the total memory used by functions.
240
240
* Improve GEQO optimizer performance (Tom)
241
- There were several inefficiencies in the way the GEQO optimizer
242
- managed potential query paths. This release fixes this .
241
+ This release fixes several inefficiencies in the way the GEQO
242
+ optimizer manages potential query paths.
243
243
* Allow IN/NOT IN to be handled via hash tables (Tom)
244
244
* Improve NOT IN (subquery) performance (Tom)
245
245
* Allow most IN subqueries to be processed as joins (Tom)
@@ -430,8 +430,9 @@ Utility Command Changes
430
430
deleted on transaction commit.
431
431
* Allow cursors outside transactions using WITH HOLD (Neil)
432
432
In previous releases, cursors were removed at the end of the
433
- transaction. Using WITH HOLD, the current release allows cursors
434
- to remain readable after the creating transaction.
433
+ transaction that created them. Cursors can now be created with the
434
+ WITH HOLD option, which allows them to continue to be accessed
435
+ after the creating transaction has committed.
435
436
* FETCH 0 and MOVE 0 now do nothing (Bruce)
436
437
In previous releases, FETCH 0 fetched all remaining rows, and MOVE
437
438
0 moved to the end of the cursor.
@@ -441,10 +442,12 @@ Utility Command Changes
441
442
In prior releases, the row count returned by "FETCH" and "MOVE"
442
443
did not accurately reflect the number of rows processed.
443
444
* Properly handle SCROLL with cursors, or report an error (Neil)
444
- Certain cursors can not be fetched backwards optimally. By
445
- specifying SCROLL, extra work will be performed to guarantee that
446
- the cursor can be fetched in reverse or random order.
447
- * Implement SQL-compatible option FIRST, LAST, ABSOLUTE n, RELATIVE
445
+ Allowing random access (both forward and backward scrolling) to
446
+ some kinds of queries cannot be done without some additional work.
447
+ If SCROLL is specified when the cursor is created, this additional
448
+ work will be performed. Furthermore, if the cursor has been
449
+ created with NO SCROLL, no random access is allowed.
450
+ * Implement SQL-compatible options FIRST, LAST, ABSOLUTE n, RELATIVE
448
451
n for "FETCH" and "MOVE" (Tom)
449
452
* Allow "EXPLAIN" on "DECLARE CURSOR" (Tom)
450
453
* Allow "CLUSTER" to use index marked as pre-clustered by default
@@ -460,8 +463,9 @@ Utility Command Changes
460
463
* Recover from "COPY" failure cleanly (Tom)
461
464
* Prevent possible memory leaks in "COPY" (Tom)
462
465
* Make "TRUNCATE" transaction-safe (Rod)
463
- "TRUNCATE" can now be used inside a transaction, and rolled back
464
- if the transaction aborts.
466
+ "TRUNCATE" can now be used inside a transaction. If the
467
+ transaction aborts, the changes made by the "TRUNCATE" are
468
+ automatically rolled back.
465
469
* Allow prepare/bind of utility commands like "FETCH" and "EXPLAIN"
466
470
(Tom)
467
471
* Add "EXPLAIN EXECUTE" (Neil)
@@ -758,8 +762,8 @@ Contrib Changes
758
762
* Fix bug in metaphone() in fuzzystrmatch
759
763
* Improve adddepend (Rod)
760
764
* Update spi/timetravel (B�jthe Zolt�n)
761
- * Fix dbase "-s" option and improve non-ASCII handling (Thomas
762
- Behr, M�rcio Smiderle)
765
+ * Fix dbase "-s" option and improve non-ASCII handling (Thomas Behr,
766
+ M�rcio Smiderle)
763
767
* Remove array module because features now included by default (Joe)
764
768
_________________________________________________________________
765
769
0 commit comments