Re: [previously on HACKERS] "Compacting" a relation

From: Alvaro Herrera <alvherre(at)commandprompt(dot)com>
To: Bruce Momjian <bruce(at)momjian(dot)us>
Cc: Simon Riggs <simon(at)2ndquadrant(dot)com>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Peter Eisentraut <peter_e(at)gmx(dot)net>, pgsql-patches(at)postgresql(dot)org
Subject: Re: [previously on HACKERS] "Compacting" a relation
Date: 2007-02-22 00:28:04
Message-ID: 20070222002804.GD14055@alvh.no-ip.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-patches

Bruce Momjian wrote:
> Alvaro Herrera wrote:
> > Bruce Momjian wrote:
> > >
> > > I applied the optional VACUUM FULL version, but modified to code to say
> > > 20% rather than a factor of 5, attached.
> >
> > String construction does not work well with translations; please
> > reformulate this.
> >
> > > + errhint("Consider%sincreasing the configuration parameter \"max_fsm_pages\".",
> > > + /* Only suggest VACUUM FULL if 20% free */
> > > + (vacrelstats->tot_free_pages > vacrelstats->rel_pages * 0.20
> > > + ? " using VACUUM FULL on this relation or ": " "))));
>
> OK, updated.

Thanks :-)

--
Alvaro Herrera http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Henry B. Hotz 2007-02-22 00:46:48 Re: log ssl mode with connections?
Previous Message Gregory Stark 2007-02-21 23:52:32 Re: Column storage positions

Browse pgsql-patches by date

  From Date Subject
Next Message FAST PostgreSQL 2007-02-22 00:50:06 Re: WIP patch - INSERT-able log statements
Previous Message Guillaume Smet 2007-02-22 00:00:09 First implementation of GIN for pg_trgm