diff options
author | Bruce Momjian | 2003-06-24 23:19:11 +0000 |
---|---|---|
committer | Bruce Momjian | 2003-06-24 23:19:11 +0000 |
commit | 7cb4278e82f1fc18530f4ec0b2c5435b88fa7003 (patch) | |
tree | 62922712fb066c9c390d5a35352da290ab6ef083 /doc/src | |
parent | 46bf65148002f03a4775e6fbb2c4f758184062c5 (diff) |
Small patch to link to the proper place in the "runtime" file,
and to add the "schemaname" column to the description of the
pg_stats view.
Greg Sabino Mullane
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/perform.sgml | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/doc/src/sgml/perform.sgml b/doc/src/sgml/perform.sgml index 326c7e6134a..a839e8f466d 100644 --- a/doc/src/sgml/perform.sgml +++ b/doc/src/sgml/perform.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/perform.sgml,v 1.28 2003/03/25 16:15:37 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/perform.sgml,v 1.29 2003/06/24 23:19:10 momjian Exp $ --> <chapter id="performance-tips"> @@ -66,7 +66,7 @@ $Header: /cvsroot/pgsql/doc/src/sgml/perform.sgml,v 1.28 2003/03/25 16:15:37 pet estimates are converted into disk-page units using some fairly arbitrary fudge factors. If you want to experiment with these factors, see the list of run-time configuration parameters in - <xref linkend="runtime-config">.) + <xref linkend="runtime-config-optimizer">.) </para> <para> @@ -436,6 +436,12 @@ SELECT attname, n_distinct, most_common_vals FROM pg_stats WHERE tablename = 'ro <tbody> <row> + <entry><literal>schemaname</literal></entry> + <entry><type>name</type></entry> + <entry>Name of the schema containing the table.</entry> + </row> + + <row> <entry><literal>tablename</literal></entry> <entry><type>name</type></entry> <entry>Name of the table containing the column.</entry> |