Small patch to link to the proper place in the "runtime" file,
authorBruce Momjian
Tue, 24 Jun 2003 23:19:11 +0000 (23:19 +0000)
committerBruce Momjian
Tue, 24 Jun 2003 23:19:11 +0000 (23:19 +0000)
and to add the "schemaname" column to the description of the
pg_stats view.

Greg Sabino Mullane

doc/src/sgml/perform.sgml
src/include/storage/s_lock.h

index 326c7e6134a88155660c1dd5ec2fc2529e2e6b39..a839e8f466d6629ed719a8d4e65ca60fd5508d27 100644 (file)
@@ -1,5 +1,5 @@
 
 
  
@@ -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
-    .)
+    -optimizer">.)
    
 
    
@@ -435,6 +435,12 @@ SELECT attname, n_distinct, most_common_vals FROM pg_stats WHERE tablename = 'ro
     
 
     
+     
+      schemaname
+      name
+      Name of the schema containing the table.
+     
+
      
       tablename
       name
index b26c63029adac9f5616452cf8e0446d47d29a315..a37ea9b9ae2c2e324d2813230a0fc793c7fef66d 100644 (file)
@@ -63,7 +63,7 @@
  * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
  * Portions Copyright (c) 1994, Regents of the University of California
  *
- *   $Id: s_lock.h,v 1.107 2003/06/05 16:07:25 petere Exp $
+ *   $Id: s_lock.h,v 1.108 2003/06/24 23:19:11 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -94,7 +94,7 @@
  */
 
 
-#if defined(__i386__)
+#if defined(__i386__) || defined(__x86_64__)
 #define TAS(lock) tas(lock)
 
 static __inline__ int
@@ -110,7 +110,7 @@ tas(volatile slock_t *lock)
    return (int) _res;
 }
 
-#endif  /* __i386__ */
+#endif  /* __i386__ || __x86_64__ */
 
 
 #ifdef __ia64__