Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
1ba96ef0
Commit
1ba96ef0
authored
Oct 20, 2007
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More release note wording improvements.
parent
7b98f6be
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
40 additions
and
30 deletions
+40
-30
doc/src/sgml/release.sgml
doc/src/sgml/release.sgml
+40
-30
No files found.
doc/src/sgml/release.sgml
View file @
1ba96ef0
<!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.52
8 2007/10/19 01:56:06
momjian Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.52
9 2007/10/20 16:41:09
momjian Exp $ -->
<!--
Typical markup:
...
...
@@ -91,14 +91,13 @@ do it for earlier branch release files.
<listitem>
<para>
Control over whether <literal>NULL</>s sort first or last, using
<literal>ORDER BY ... NULLS FIRST/LAST</>
Control over whether <literal>NULL</>s sort first or last
</para>
</listitem>
<listitem>
<para>
Updatable cursors
using <literal>UPDATE/DELETE WHERE CURRENT OF</>
Updatable cursors
</para>
</listitem>
...
...
@@ -124,17 +123,14 @@ do it for earlier branch release files.
<listitem>
<para>
Numerous improvements in logging and statistics collection,
including the ability to emit postmaster log messages in
<acronym>CSV</> format, which can be loaded into a database
table for analysis
Numerous improvements in logging and statistics collection
</para>
</listitem>
<listitem>
<para>
Support Security Service Provider Interface (
SSPI) on
authentication
for Windows and GSSAPI
Support Security Service Provider Interface (
<acronym>SSPI</>) for
authentication
on Windows
</para>
</listitem>
...
...
@@ -163,8 +159,8 @@ do it for earlier branch release files.
<listitem>
<para>
Asynchronous commit
option allows transactions to be committed
but on-disk
changes to be delayed
Asynchronous commit
allows transactions to be committed but on-disk
changes to be delayed
</para>
</listitem>
...
...
@@ -487,8 +483,8 @@ do it for earlier branch release files.
<listitem>
<para>
Asynchronous commit
option allows transactions to be committed
but on-disk
changes to be delayed (Simon)
Asynchronous commit
allows transactions to be committed but on-disk
changes to be delayed (Simon)
</para>
<para>
...
...
@@ -526,14 +522,14 @@ do it for earlier branch release files.
</para>
<para>
To allow high concurrency <
productname>PostgreSQL</> retains old
versions of updated rows. Previously only <command>VACUUM</>
could reuse space taken by dead rows. With <acronym>HOT</> dead
row space can be reused at the time of <command>UPDATE</> or
<command>
INSERT</>. This allows for more consistent performance.
<acronym>HOT</> even allows deleted row space reuse.
<command>UPDATE</> space reuse is only possible if no modified
columns are indexed
.
To allow high concurrency <
command>UPDATE</> creates a new tuple,
rather than replacing the old tuple. Previously only
<command>VACUUM</> could reuse space taken by old tuples. With
<acronym>HOT</> dead tuple space can be reused at the time of
<command>
UPDATE</> or <command>INSERT</>. This allows for more
consistent performance. <acronym>HOT</> even allows deleted row
space reuse. <acronym>HOT</> space reuse is not possible if
<command>UPDATE</> changes indexed columns
.
</para>
</listitem>
...
...
@@ -627,8 +623,9 @@ do it for earlier branch release files.
</para>
<para>
This is done by scanning the table and using a filter to save
the few requested rows, rather than sorting the entire table.
This is done by sequentially scanning the table and using a filter
to save the few requested rows, rather than sorting the entire
table. This is used if there is no matching index.
</para>
</listitem>
...
...
@@ -694,8 +691,13 @@ do it for earlier branch release files.
<listitem>
<para>
Support Security Service Provider Interface (SSPI)
authentication on Windows (Magnus)
Support Security Service Provider Interface (<acronym>SSPI</>) for
authentication on Windows
</para>
<para>
This also adds support for the <acryonym>GSSAPI</> authentication
<acronym>API</>.
</para>
</listitem>
...
...
@@ -740,6 +742,10 @@ do it for earlier branch release files.
Allow logfile creation in CSV format (Arul Shaji, Greg Smith,
Andrew Dunstan)
</para>
<para>
The CSV file can be loaded into a database table for analysis.
</para>
</listitem>
<listitem>
...
...
@@ -1004,8 +1010,11 @@ do it for earlier branch release files.
<listitem>
<para>
Control over whether <literal>NULL</>s sort first or last, using
<literal>ORDER BY ... NULLS FIRST/LAST</> (Teodor, Tom)
Control over whether <literal>NULL</>s sort first or last (Teodor, Tom)
</para>
<para>
The syntax is <literal>ORDER BY ... NULLS FIRST/LAST</>.
</para>
</listitem>
...
...
@@ -1031,8 +1040,9 @@ do it for earlier branch release files.
</para>
<para>
This eliminates the need to reference a primary key to update or
delete rows returned by a cursor.
This eliminates the need to reference a primary key to
<command>UPDATE</> or <command>DELETE</> rows returned by a cursor.
The syntax is <literal>UPDATE/DELETE WHERE CURRENT OF</>.
</para>
</listitem>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment