@@ -1097,8 +1097,10 @@ data. Empty in ordinary tables.</entry>
1097
1097
<itemizedlist>
1098
1098
<listitem>
1099
1099
<para>
1100
- The update does not modify any columns referenced by the table's
1101
- indexes, including expression and partial indexes.
1100
+ The update does not modify any columns referenced by the table's indexes,
1101
+ not including summarizing indexes. The only summarizing index method in
1102
+ the core <productname>PostgreSQL</productname> distribution is <link
1103
+ linkend="brin">BRIN</link>.
1102
1104
</para>
1103
1105
</listitem>
1104
1106
<listitem>
@@ -1114,7 +1116,8 @@ data. Empty in ordinary tables.</entry>
1114
1116
<itemizedlist>
1115
1117
<listitem>
1116
1118
<para>
1117
- New index entries are not needed to represent updated rows.
1119
+ New index entries are not needed to represent updated rows, however,
1120
+ summary indexes may still need to be updated.
1118
1121
</para>
1119
1122
</listitem>
1120
1123
<listitem>
@@ -1130,14 +1133,12 @@ data. Empty in ordinary tables.</entry>
1130
1133
</para>
1131
1134
1132
1135
<para>
1133
- In summary, heap-only tuple updates can only be created
1134
- if columns used by indexes are not updated. You can
1135
- increase the likelihood of sufficient page space for
1136
+ You can increase the likelihood of sufficient page space for
1136
1137
<acronym>HOT</acronym> updates by decreasing a table's <link
1137
- linkend="reloption-fillfactor"><literal>fillfactor</literal></link>.
1138
- If you don't, <acronym>HOT</acronym> updates will still happen because
1139
- new rows will naturally migrate to new pages and existing pages with
1140
- sufficient free space for new row versions. The system view <link
1138
+ linkend="reloption-fillfactor"><literal>fillfactor</literal></link>. If you
1139
+ don't, <acronym>HOT</acronym> updates will still happen because new rows
1140
+ will naturally migrate to new pages and existing pages with sufficient free
1141
+ space for new row versions. The system view <link
1141
1142
linkend="monitoring-pg-stat-all-tables-view">pg_stat_all_tables</link>
1142
1143
allows monitoring of the occurrence of HOT and non-HOT updates.
1143
1144
</para>