Skip to content
Snippets Groups Projects
Commit d6a18f45 authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Mention that HOT helps with DELETE space reuse.

parent 7b618017
No related branches found
No related tags found
No related merge requests found
<!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.570 2007/12/16 07:19:32 momjian Exp $ --> <!-- $PostgreSQL: pgsql/doc/src/sgml/release.sgml,v 1.571 2007/12/16 13:05:30 momjian Exp $ -->
<!-- <!--
   
Typical markup: Typical markup:
...@@ -204,7 +204,7 @@ do it for earlier branch release files. ...@@ -204,7 +204,7 @@ do it for earlier branch release files.
<listitem> <listitem>
<para> <para>
Heap-Only Tuples (<acronym>HOT</>) accelerate space reuse for Heap-Only Tuples (<acronym>HOT</>) accelerate space reuse for
most <command>UPDATE</>s most <command>UPDATE</>s and <command>DELETE</>s
</para> </para>
</listitem> </listitem>
   
...@@ -736,7 +736,8 @@ current_date &lt; 2017-11-17 ...@@ -736,7 +736,8 @@ current_date &lt; 2017-11-17
<listitem> <listitem>
<para> <para>
Heap-Only Tuples (<acronym>HOT</>) accelerate space reuse for most Heap-Only Tuples (<acronym>HOT</>) accelerate space reuse for most
<command>UPDATE</>s (Pavan Deolasee, with ideas from many others) <command>UPDATE</>s and <command>DELETE</>s (Pavan Deolasee, with
ideas from many others)
</para> </para>
   
<para> <para>
...@@ -744,7 +745,7 @@ current_date &lt; 2017-11-17 ...@@ -744,7 +745,7 @@ current_date &lt; 2017-11-17
behind, as do failed <command>INSERT</>s. Previously only behind, as do failed <command>INSERT</>s. Previously only
<command>VACUUM</> could reclaim space taken by dead tuples. With <command>VACUUM</> could reclaim space taken by dead tuples. With
<acronym>HOT</> dead tuple space can be reclaimed at the time of <acronym>HOT</> dead tuple space can be reclaimed at the time of
<command>UPDATE</> or <command>INSERT</> if no changes are made to <command>INSERT</> or <command>UPDATE</> if no changes are made to
indexed columns. This allows for more consistent performance. indexed columns. This allows for more consistent performance.
Also, <acronym>HOT</> avoids adding duplicate index entries. Also, <acronym>HOT</> avoids adding duplicate index entries.
</para> </para>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment