File tree Expand file tree Collapse file tree 3 files changed +42
-0
lines changed Expand file tree Collapse file tree 3 files changed +42
-0
lines changed Original file line number Diff line number Diff line change @@ -113,6 +113,7 @@ CREATE EXTENSION <replaceable>module_name</> FROM unpackaged;
113
113
&dblink;
114
114
&dict-int;
115
115
&dict-xsyn;
116
+ &dump-stat;
116
117
&earthdistance;
117
118
&file-fdw;
118
119
&fuzzystrmatch;
Original file line number Diff line number Diff line change
1
+ <!-- doc/src/sgml/dump_stat.sgml -->
2
+
3
+ <sect1 id="dump-stat" xreflabel="dump-stat">
4
+ <title>dump_stat</title>
5
+
6
+ <indexterm zone="dump-stat">
7
+ <primary>dump_stat</primary>
8
+ </indexterm>
9
+
10
+ <para>
11
+ The <filename>dump_stat</> module provides functions that allow you to
12
+ backup and recover the contents of the pg_statistic table.
13
+ </para>
14
+
15
+ <sect2>
16
+ <title>Functions</title>
17
+
18
+ <variablelist>
19
+ <varlistentry>
20
+ <term>
21
+ <function>dump_statistic() returns setof text</function>
22
+ <indexterm>
23
+ <primary>dump_statistic</primary>
24
+ </indexterm>
25
+ </term>
26
+
27
+ <listitem>
28
+ <para>
29
+ <function>dump_statistic</function> dumps the contents of the
30
+ <link linkend="catalog-pg-statistic"><structname>pg_statistic</structname></link>
31
+ system catalog. It produces an <literal>INSERT</> statement
32
+ per each tuple of the <literal>pg_statistic</>, excluding
33
+ the ones that contain statistical data for tables in
34
+ <literal>information_schema</> and <literal>pg_catalog</>
35
+ schemas.
36
+ </para>
37
+ </listitem>
38
+ </varlistentry>
39
+ </variablelist>
40
+ </sect1>
Original file line number Diff line number Diff line change 126
126
<!ENTITY ltree SYSTEM "ltree.sgml">
127
127
<!ENTITY oid2name SYSTEM "oid2name.sgml">
128
128
<!ENTITY pageinspect SYSTEM "pageinspect.sgml">
129
+ <!ENTITY dump-stat SYSTEM "dump_stat.sgml">
129
130
<!ENTITY passwordcheck SYSTEM "passwordcheck.sgml">
130
131
<!ENTITY pgbuffercache SYSTEM "pgbuffercache.sgml">
131
132
<!ENTITY pgcrypto SYSTEM "pgcrypto.sgml">
You can’t perform that action at this time.
0 commit comments