Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit7cb4278

Browse files
committed
Small patch to link to the proper place in the "runtime" file,
and to add the "schemaname" column to the description of thepg_stats view.Greg Sabino Mullane
1 parent46bf651 commit7cb4278

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

‎doc/src/sgml/perform.sgml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$Header: /cvsroot/pgsql/doc/src/sgml/perform.sgml,v 1.28 2003/03/25 16:15:37 petere Exp $
2+
$Header: /cvsroot/pgsql/doc/src/sgml/perform.sgml,v 1.29 2003/06/24 23:19:10 momjian Exp $
33
-->
44

55
<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
6666
estimates are converted into disk-page units using some
6767
fairly arbitrary fudge factors. If you want to experiment with these
6868
factors, see the list of run-time configuration parameters in
69-
<xref linkend="runtime-config">.)
69+
<xref linkend="runtime-config-optimizer">.)
7070
</para>
7171

7272
<para>
@@ -435,6 +435,12 @@ SELECT attname, n_distinct, most_common_vals FROM pg_stats WHERE tablename = 'ro
435435
</thead>
436436

437437
<tbody>
438+
<row>
439+
<entry><literal>schemaname</literal></entry>
440+
<entry><type>name</type></entry>
441+
<entry>Name of the schema containing the table.</entry>
442+
</row>
443+
438444
<row>
439445
<entry><literal>tablename</literal></entry>
440446
<entry><type>name</type></entry>

‎src/include/storage/s_lock.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
6464
* Portions Copyright (c) 1994, Regents of the University of California
6565
*
66-
* $Id: s_lock.h,v 1.107 2003/06/05 16:07:25 petere Exp $
66+
* $Id: s_lock.h,v 1.108 2003/06/24 23:19:11 momjian Exp $
6767
*
6868
*-------------------------------------------------------------------------
6969
*/
@@ -94,7 +94,7 @@
9494
*/
9595

9696

97-
#if defined(__i386__)
97+
#if defined(__i386__)|| defined(__x86_64__)
9898
#defineTAS(lock) tas(lock)
9999

100100
static __inline__int
@@ -110,7 +110,7 @@ tas(volatile slock_t *lock)
110110
return (int)_res;
111111
}
112112

113-
#endif/* __i386__ */
113+
#endif/* __i386__|| __x86_64__*/
114114

115115

116116
#ifdef__ia64__

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp