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
3e9a86a3
Commit
3e9a86a3
authored
Nov 15, 2003
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
A little bit more copy-editing...
parent
c76037aa
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
doc/src/sgml/release.sgml
doc/src/sgml/release.sgml
+9
-9
No files found.
doc/src/sgml/release.sgml
View file @
3e9a86a3
<!--
<!--
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.24
1 2003/11/15 01:16:37 petere
Exp $
$Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.24
2 2003/11/15 20:01:11 tgl
Exp $
-->
-->
<appendix id="release">
<appendix id="release">
...
@@ -113,7 +113,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.241 2003/11/15 01:16:37 pe
...
@@ -113,7 +113,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.241 2003/11/15 01:16:37 pe
<para>
<para>
Simple SQL functions can now be inlined by including their SQL
Simple SQL functions can now be inlined by including their SQL
in the main query. This improves performance by eliminating
in the main query. This improves performance by eliminating
per-call overhead. That means
,
simple SQL functions now
per-call overhead. That means simple SQL functions now
behave like macros.
behave like macros.
</para>
</para>
</listitem>
</listitem>
...
@@ -149,7 +149,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.241 2003/11/15 01:16:37 pe
...
@@ -149,7 +149,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.241 2003/11/15 01:16:37 pe
<varlistentry>
<varlistentry>
<term>
<term>
Make free space map
to
efficiently reuse empty index pages,
Make free space map efficiently reuse empty index pages,
and other free space management improvements
and other free space management improvements
</term>
</term>
...
@@ -157,7 +157,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.241 2003/11/15 01:16:37 pe
...
@@ -157,7 +157,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.241 2003/11/15 01:16:37 pe
<para>
<para>
In previous releases, B-tree index pages that were left empty
In previous releases, B-tree index pages that were left empty
because of deleted rows could only be reused by rows with
because of deleted rows could only be reused by rows with
index values similar to the
original rows
indexed on that
index values similar to the
rows originally
indexed on that
page. In 7.4, <command>VACUUM</command> records empty index
page. In 7.4, <command>VACUUM</command> records empty index
pages and allows them to be reused for any future index rows.
pages and allows them to be reused for any future index rows.
</para>
</para>
...
@@ -180,7 +180,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.241 2003/11/15 01:16:37 pe
...
@@ -180,7 +180,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.241 2003/11/15 01:16:37 pe
<varlistentry>
<varlistentry>
<term>
<term>
Cursors conform more closely
with
the SQL standard
Cursors conform more closely
to
the SQL standard
</term>
</term>
<listitem>
<listitem>
...
@@ -199,7 +199,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.241 2003/11/15 01:16:37 pe
...
@@ -199,7 +199,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.241 2003/11/15 01:16:37 pe
<listitem>
<listitem>
<para>
<para>
These cursors are also called holdable cursors
These cursors are also called holdable cursors
.
</para>
</para>
</listitem>
</listitem>
</varlistentry>
</varlistentry>
...
@@ -315,7 +315,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.241 2003/11/15 01:16:37 pe
...
@@ -315,7 +315,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.241 2003/11/15 01:16:37 pe
release. Significant effort was invested to make the messages
release. Significant effort was invested to make the messages
more consistent and user-oriented. If your applications try to
more consistent and user-oriented. If your applications try to
detect different error conditions by parsing the error message,
detect different error conditions by parsing the error message,
you are strongly encourage
to use the new error code facility
.
you are strongly encourage
d to use the new error code facility instead
.
</para>
</para>
</listitem>
</listitem>
...
@@ -568,8 +568,8 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.241 2003/11/15 01:16:37 pe
...
@@ -568,8 +568,8 @@ $Header: /cvsroot/pgsql/doc/src/sgml/release.sgml,v 1.241 2003/11/15 01:16:37 pe
<listitem>
<listitem>
<para>Improve GEQO optimizer performance (Tom)</para>
<para>Improve GEQO optimizer performance (Tom)</para>
<para>
<para>
Th
ere were
several inefficiencies in the way the GEQO optimizer
Th
is release fixes
several inefficiencies in the way the GEQO optimizer
manage
d potential query paths. This release fixes thi
s.
manage
s potential query path
s.
</para>
</para>
</listitem>
</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