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
0e3afb32
Commit
0e3afb32
authored
Jan 15, 2005
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor improvements in descriptions of recent changes.
parent
67c1fd1e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
9 deletions
+14
-9
doc/src/sgml/release.sgml
doc/src/sgml/release.sgml
+14
-9
No files found.
doc/src/sgml/release.sgml
View file @
0e3afb32
<!--
<!--
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.3
19 2005/01/15 05:59:44 momjian
Exp $
$PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.3
20 2005/01/15 07:53:04 tgl
Exp $
-->
-->
<appendix id="release">
<appendix id="release">
...
@@ -648,14 +648,18 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.319 2005/01/15 05:59:44 momjian
...
@@ -648,14 +648,18 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.319 2005/01/15 05:59:44 momjian
<listitem>
<listitem>
<para>
<para>
Improve optimizer row estimates for non-<command>VACUUM</command>ed
Improve optimizer rowcount estimates (Tom)
tables (Tom)
</para>
</para>
<para>
<para>
The system now uses the number of blocks in the table to estimate the
Formerly the planner estimated table sizes using the values seen
number of rows in the table if it has never been
by the last <command>VACUUM</command> or <command>ANALYZE</command>,
<command>VACUUM</command>ed or <command>ANALYZE</command>d.
both as to physical table size (number of pages) and number of rows.
Previously a fixed value was used in such cases.
Now, the physical table size is obtained directly from the kernel,
and the number of rows is estimated by multiplying the table size
by the row density (rows per page) seen by the last
<command>VACUUM</command> or <command>ANALYZE</command>. This should
produce more reliable estimates in cases where the table size has
changed significantly since the last housekeeping command.
</para>
</para>
</listitem>
</listitem>
...
@@ -1744,10 +1748,11 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.319 2005/01/15 05:59:44 momjian
...
@@ -1744,10 +1748,11 @@ $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.319 2005/01/15 05:59:44 momjian
<listitem>
<listitem>
<para>
<para>
A
llow PL/pgSQL to understand <command>ELSEIF</>
(Neil)
A
ccept <command>ELSEIF</> in PL/pgSQL
(Neil)
</para>
</para>
<para>
<para>
Previously PL/pgSQL only understood <command>ELSIF</>.
Previously PL/pgSQL only allowed <command>ELSIF</>, but many people
are accustomed to spelling this keyword <command>ELSEIF</>.
</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