[DOCS] Deux typo fixes...

2007-11-05 Thread Guillaume Lelarge
... this time in textsearch.sgml. Please apply. Thanks.

Regards.


-- 
Guillaume.
 http://www.postgresqlfr.org
 http://dalibo.com
Index: doc/src/sgml/textsearch.sgml
===
RCS file: /projects/cvsroot/pgsql/doc/src/sgml/textsearch.sgml,v
retrieving revision 1.29
diff -r1.29 textsearch.sgml
2063c2063
< The mising positions 1,2,4 are because of stop words.  Ranks
---
> The missing positions 1,2,4 are because of stop words.  Ranks
2545c2545
< at the end of the dictionary list. It it useless to have it
---
> at the end of the dictionary list. It is useless to have it

---(end of broadcast)---
TIP 3: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faq


Re: [DOCS] Deux typo fixes...

2007-11-05 Thread Magnus Hagander
On Mon, Nov 05, 2007 at 04:49:46PM +0100, Guillaume Lelarge wrote:
> ... this time in textsearch.sgml. Please apply. Thanks.

Applied, thanks.

//Magnus

---(end of broadcast)---
TIP 3: Have you checked our extensive FAQ?

   http://www.postgresql.org/docs/faq


Re: [DOCS] [HACKERS] Asynchronous commit documentation gap

2007-11-05 Thread Bruce Momjian
Florian Weimer wrote:
> The documentation doesn't really tell how to disable synchronous
> commits for a single commit.  I believe the correct command is
> 
>   SET LOCAL synchronous_commit TO OFF;
> 
> just before the COMMIT statement.

Nice.  I made the following documentation change, attached.

-- 
  Bruce Momjian  <[EMAIL PROTECTED]>http://momjian.us
  EnterpriseDB http://postgres.enterprisedb.com

  + If your life is a hard drive, Christ can be your backup. +
Index: doc/src/sgml/config.sgml
===
RCS file: /cvsroot/pgsql/doc/src/sgml/config.sgml,v
retrieving revision 1.152
diff -c -c -r1.152 config.sgml
*** doc/src/sgml/config.sgml	1 Nov 2007 17:06:30 -	1.152
--- doc/src/sgml/config.sgml	5 Nov 2007 17:34:36 -
***
*** 1318,1324 
  In many situations, turning off 
  for noncritical transactions can provide much of the potential
  performance benefit of turning off fsync, without
! the attendant risks of data corruption.
 
  
 
--- 1318,1326 
  In many situations, turning off 
  for noncritical transactions can provide much of the potential
  performance benefit of turning off fsync, without
! the attendant risks of data corruption.  It can even be turned
! off in a single multi-statement transaction using SET
! LOCAL synchronous_commit TO OFF;.
 
  
 

---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster