Skip to content

Commit 8cddea9

Browse files
committed
Doc: unify use of timestamp with time zone vs timestamptz
For pg_stat_all_tables, last_vacuum, last_autovacuum and co all used the full "timestamp with time zone" type name. For consistency, make the newly added "last_seq_scan" also use the full type name instead of "timestamptz". Author: Noriyoshi Shinoda Discussion: https://postgr.es/m/DM4PR84MB17348EA11FA90A9BE896AF89EE489%40DM4PR84MB1734.NAMPRD84.PROD.OUTLOOK.COM
1 parent 0211544 commit 8cddea9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/src/sgml/monitoring.sgml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4863,7 +4863,7 @@ SELECT pid, wait_event_type, wait_event FROM pg_stat_activity WHERE wait_event i
48634863

48644864
<row>
48654865
<entry role="catalog_table_entry"><para role="column_definition">
4866-
<structfield>last_seq_scan</structfield> <type>timestamptz</type>
4866+
<structfield>last_seq_scan</structfield> <type>timestamp with time zone</type>
48674867
</para>
48684868
<para>
48694869
The time of the last sequential scan on this table, based on the
@@ -4891,7 +4891,7 @@ SELECT pid, wait_event_type, wait_event FROM pg_stat_activity WHERE wait_event i
48914891

48924892
<row>
48934893
<entry role="catalog_table_entry"><para role="column_definition">
4894-
<structfield>last_idx_scan</structfield> <type>timestamptz</type>
4894+
<structfield>last_idx_scan</structfield> <type>timestamp with time zone</type>
48954895
</para>
48964896
<para>
48974897
The time of the last index scan on this table, based on the
@@ -5170,7 +5170,7 @@ SELECT pid, wait_event_type, wait_event FROM pg_stat_activity WHERE wait_event i
51705170

51715171
<row>
51725172
<entry role="catalog_table_entry"><para role="column_definition">
5173-
<structfield>last_idx_scan</structfield> <type>timestamptz</type>
5173+
<structfield>last_idx_scan</structfield> <type>timestamp with time zone</type>
51745174
</para>
51755175
<para>
51765176
The time of the last scan on this index, based on the

0 commit comments

Comments
 (0)