aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2014-05-05 20:03:12 -0400
committerBruce Momjian <bruce@momjian.us>2014-05-05 20:03:12 -0400
commita1c287a3836ff47e7ea01c82aceba75f15ba7c91 (patch)
tree702c5963d2f1694f8844bf135c6fc710d9a20000
parent60832ea39d670cb6c39081e31ad175e0e1c555f8 (diff)
downloadpostgresql-a1c287a3836ff47e7ea01c82aceba75f15ba7c91.tar.gz
postgresql-a1c287a3836ff47e7ea01c82aceba75f15ba7c91.zip
Move pg_stat_statements into its on 9.4 release note section
-rw-r--r--doc/src/sgml/release-9.4.sgml76
1 files changed, 41 insertions, 35 deletions
diff --git a/doc/src/sgml/release-9.4.sgml b/doc/src/sgml/release-9.4.sgml
index 4f33e90510c..62ac6d34f29 100644
--- a/doc/src/sgml/release-9.4.sgml
+++ b/doc/src/sgml/release-9.4.sgml
@@ -2220,41 +2220,6 @@
<listitem>
<para>
- Allow reporting of the <link
- linkend="pgstatstatements"><application>pg_stat_statements</></link>'s
- internal query hash identifier (Daniel Farina, Sameer Thakur,
- Peter Geoghegan)
- </para>
- </listitem>
-
- <listitem>
- <para>
- Have <link
- linkend="pgstatstatements"><application>pg_stat_statements</></link>
- use a flat file for query text storage (Peter Geoghegan)
- </para>
-
- <para>
- This removes the limitation on query text length, and allows a
- higher default number of unique statements to be tracked.
- (Peter Geoghegan)
- </para>
- </listitem>
-
- <listitem>
- <para>
- Add the ability to retrieve all <application>pg_stat_statements</>
- information except the query text (Peter Geoghegan)
- </para>
-
- <para>
- This allows programs to reuse the query text already retrieved
- by referencing <structname>queryid</>.
- </para>
- </listitem>
-
- <listitem>
- <para>
Fix <link linkend="pgstattuple"><application>pgstattuple</></link>
to not report rows from uncommitted transactions as dead
(Robert Haas)
@@ -2364,6 +2329,47 @@
</sect4>
+ <sect4>
+ <title><link linkend="pgstatstatements"><application>pg_stat_statements</></link></title>
+
+ <itemizedlist>
+
+ <listitem>
+ <para>
+ Have <application>pg_stat_statements</> use a flat file for query
+ text storage (Peter Geoghegan)
+ </para>
+
+ <para>
+ This removes the limitation on query text length, and allows a
+ higher default number of unique statements to be tracked.
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Allow reporting of <application>pg_stat_statements</>'s internal
+ query hash identifier (Daniel Farina, Sameer Thakur, Peter
+ Geoghegan)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Add the ability to retrieve all <application>pg_stat_statements</>
+ information except the query text (Peter Geoghegan)
+ </para>
+
+ <para>
+ This allows programs to reuse the query text already retrieved
+ by referencing <structname>queryid</>.
+ </para>
+ </listitem>
+
+ </itemizedlist>
+
+ </sect4>
+
</sect3>
</sect2>