Skip to content

Commit 8ed0a7f

Browse files
uchi-hhoriguti
authored andcommitted
Documentation fix for changes in pg_store_plans
Adjust the documentation to reflect the changes made in the previous commit.
1 parent 8612649 commit 8ed0a7f

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

docs/index.html

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -156,17 +156,29 @@ <H2 CLASS="SECT2">1. The <TT CLASS="STRUCTNAME">pg_store_plans</TT>
156156
<TD>Total number of temp blocks written by the statement using the
157157
plan</TD>
158158
</TR>
159-
<TR><TD><TT CLASS="STRUCTFIELD">blk_read_time</TT></TD>
159+
<TR><TD><TT CLASS="STRUCTFIELD">shared_blk_read_time</TT></TD>
160160
<TD><TT CLASS="TYPE">double precision</TT></TD>
161161
<TD>&nbsp;</TD>
162162

163-
<TD>Total time the statement using the plan spent reading blocks, in milliseconds (if <A HREF="http://www.postgresql.org/docs/current/static/runtime-config-statistics.html#GUC-TRACK-IO-TIMING">track_io_timing</A> is enabled, otherwise zero)</TD>
163+
<TD>Total time the statement using the plan spent reading shared blocks, in milliseconds (if <A HREF="http://www.postgresql.org/docs/current/static/runtime-config-statistics.html#GUC-TRACK-IO-TIMING">track_io_timing</A> is enabled, otherwise zero)</TD>
164164
</TR>
165-
<TR><TD><TT CLASS="STRUCTFIELD">blk_write_time</TT></TD>
165+
<TR><TD><TT CLASS="STRUCTFIELD">shared_blk_write_time</TT></TD>
166166
<TD><TT CLASS="TYPE">double precision</TT></TD>
167167
<TD>&nbsp;</TD>
168168

169-
<TD>Total time the statement using the plan spent writing blocks, in milliseconds (if <A HREF="http://www.postgresql.org/docs/current/static/runtime-config-statistics.html#GUC-TRACK-IO-TIMING">track_io_timing</A> is enabled, otherwise zero)</TD>
169+
<TD>Total time the statement using the plan spent writing shared blocks, in milliseconds (if <A HREF="http://www.postgresql.org/docs/current/static/runtime-config-statistics.html#GUC-TRACK-IO-TIMING">track_io_timing</A> is enabled, otherwise zero)</TD>
170+
</TR>
171+
<TR><TD><TT CLASS="STRUCTFIELD">local_blk_read_time</TT></TD>
172+
<TD><TT CLASS="TYPE">double precision</TT></TD>
173+
<TD>&nbsp;</TD>
174+
175+
<TD>Total time the statement using the plan spent reading local blocks, in milliseconds (if <A HREF="http://www.postgresql.org/docs/current/static/runtime-config-statistics.html#GUC-TRACK-IO-TIMING">track_io_timing</A> is enabled, otherwise zero)</TD>
176+
</TR>
177+
<TR><TD><TT CLASS="STRUCTFIELD">local_blk_write_time</TT></TD>
178+
<TD><TT CLASS="TYPE">double precision</TT></TD>
179+
<TD>&nbsp;</TD>
180+
181+
<TD>Total time the statement using the plan spent writing local blocks, in milliseconds (if <A HREF="http://www.postgresql.org/docs/current/static/runtime-config-statistics.html#GUC-TRACK-IO-TIMING">track_io_timing</A> is enabled, otherwise zero)</TD>
170182
</TR>
171183
<TR><TD><TT CLASS="STRUCTFIELD">temp_blk_read_time</TT></TD>
172184
<TD><TT CLASS="TYPE">double precision</TT></TD>

0 commit comments

Comments
 (0)