Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 2d3edce

Browse files
committed
9.3 release note updates from Dean Rasheed, Jov, Heikki Linnakangas,
Erikjan Rijkers
1 parent cc7b0c2 commit 2d3edce

File tree

1 file changed

+28
-11
lines changed

1 file changed

+28
-11
lines changed

doc/src/sgml/release-9.3.sgml

+28-11
Original file line numberDiff line numberDiff line change
@@ -198,9 +198,9 @@
198198

199199
<listitem>
200200
<para>
201-
Improve performance of the CREATE TABLE ... ON COMMIT DELETE ROWS
202-
clause by only issuing delete if the temporary table was accessed
203-
(Heikki Linnakangas)
201+
Improve performance of the CREATE TEMPORARY TABLE ... ON COMMIT
202+
DELETE ROWS clause by only issuing delete if the temporary table
203+
was accessed (Heikki Linnakangas)
204204
</para>
205205
</listitem>
206206

@@ -516,18 +516,21 @@
516516
Store WAL in a continuous stream, rather than skipping the last
517517
16MB segment every 4GB (Heikki Linnakangas) BACKWARD COMPATIBLE BREAK
518518
</para>
519-
</listitem>
520519

521-
<listitem>
522520
<para>
523-
Restructure WAL files to better handle timeline changes during
524-
recovery (Heikki Linnakangas)
521+
If you have WAL backup or restore scripts that took the skipping
522+
into account, they need to be adjusted.
525523
</para>
526524
</listitem>
527525

528526
<listitem>
529527
<para>
530-
Restructure WAL files to use a more compact storage format (Heikki Linnakangas)
528+
Change the WAL record format to allow splitting the record header
529+
across pages (Heikki Linnakangas)
530+
</para>
531+
532+
<para>
533+
The new format is slightly more compact.
531534
</para>
532535
</listitem>
533536

@@ -600,7 +603,7 @@
600603

601604
<listitem>
602605
<para>
603-
Add CREATE SCHEMA ... IF NOT EXIST clause (Fabr&iacute;zio de
606+
Add CREATE SCHEMA ... IF NOT EXISTS clause (Fabr&iacute;zio de
604607
Royes Mello)
605608
</para>
606609
</listitem>
@@ -638,7 +641,7 @@
638641

639642
<listitem>
640643
<para>
641-
Allow CREATE TABLE IF NOT EXIST to succeed for a non-existent schema
644+
Allow CREATE TABLE IF NOT EXISTS to succeed for a non-existent schema
642645
(Bruce Momjian)
643646
</para>
644647

@@ -762,7 +765,9 @@
762765
</para>
763766

764767
<para>
765-
INSTEAD rules are still available for complex views.
768+
Simple views that reference some or all columns from a single base table
769+
are now updatable by default. More complex views can be made updatable
770+
using INSTEAD OF triggers or INSTEAD rules.
766771
</para>
767772
</listitem>
768773

@@ -1478,6 +1483,18 @@
14781483
</para>
14791484
</listitem>
14801485

1486+
<listitem>
1487+
<para>
1488+
Use a 64-bit integer to represent WAL positions (XLogRecPtr)
1489+
instead of two 32-bit integers (Heikki Linnakangas)
1490+
</para>
1491+
1492+
<para>
1493+
Generally, tools that need to read the WAL format will need to
1494+
be adjusted.
1495+
</para>
1496+
</listitem>
1497+
14811498
<listitem>
14821499
<para>
14831500
Allow PL/Python to support platform-specific include directories (Peter Eisentraut)

0 commit comments

Comments
 (0)