Commit 659f79be authored by Bruce Momjian's avatar Bruce Momjian

Allow vacuum to perform analyze with shared lock. Update cvs manual.

parent 091126fa
<!-- <!--
$Header: /cvsroot/pgsql/doc/src/sgml/cvs.sgml,v 1.8 2000/05/02 20:01:51 thomas Exp $ $Header: /cvsroot/pgsql/doc/src/sgml/cvs.sgml,v 1.9 2000/05/29 15:44:54 momjian Exp $
CVS code repository CVS code repository
Thomas Lockhart Thomas Lockhart
--> -->
...@@ -184,7 +184,7 @@ cvs commit ...@@ -184,7 +184,7 @@ cvs commit
Do an initial login to the <productname>CVS</productname> server: Do an initial login to the <productname>CVS</productname> server:
<programlisting> <programlisting>
$ cvs -d :pserver:anoncvs@postgresql.org:/usr/local/cvsroot login $ cvs -d :pserver:anoncvs@postgresql.org:/home/projects/pgsql/cvsroot login
</programlisting> </programlisting>
You will be prompted for a password; enter '<literal>postgresql</literal>'. You will be prompted for a password; enter '<literal>postgresql</literal>'.
...@@ -197,7 +197,7 @@ $ cvs -d :pserver:anoncvs@postgresql.org:/usr/local/cvsroot login ...@@ -197,7 +197,7 @@ $ cvs -d :pserver:anoncvs@postgresql.org:/usr/local/cvsroot login
<para> <para>
Fetch the <productname>Postgres</productname> sources: Fetch the <productname>Postgres</productname> sources:
<programlisting> <programlisting>
cvs -z3 -d :pserver:anoncvs@postgresql.org:/usr/local/cvsroot co -P pgsql cvs -z3 -d :pserver:anoncvs@postgresql.org:/home/projects/pgsql/cvsroot co -P pgsql
</programlisting> </programlisting>
which installs the <productname>Postgres</productname> sources into a which installs the <productname>Postgres</productname> sources into a
......
This diff is collapsed.
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1996-2000, PostgreSQL, Inc
* Portions Copyright (c) 1994, Regents of the University of California * Portions Copyright (c) 1994, Regents of the University of California
* *
* $Id: vacuum.h,v 1.27 2000/04/12 17:16:32 momjian Exp $ * $Id: vacuum.h,v 1.28 2000/05/29 15:44:55 momjian Exp $
* *
*------------------------------------------------------------------------- *-------------------------------------------------------------------------
*/ */
...@@ -125,8 +125,6 @@ typedef struct VRelStats ...@@ -125,8 +125,6 @@ typedef struct VRelStats
Size min_tlen; Size min_tlen;
Size max_tlen; Size max_tlen;
bool hasindex; bool hasindex;
int va_natts; /* number of attrs being analyzed */
VacAttrStats *vacattrstats;
int num_vtlinks; int num_vtlinks;
VTupleLink vtlinks; VTupleLink vtlinks;
} VRelStats; } VRelStats;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment