Re: [DOCS] The type of ssl_renegotiation_limit

2010-03-17 Thread Magnus Hagander
On Wed, Mar 17, 2010 at 03:28, Fujii Masao wrote: > Hi, > > http://developer.postgresql.org/pgdocs/postgres/runtime-config-connection.html#RUNTIME-CONFIG-CONNECTION-SECURITY > >> ssl_renegotiation_limit (int) > > It's described that the type of ssl_renegotiation_limit is "int". > Though it's not a

Re: [DOCS] Incorrect SQL on CREATE INDEX page

2010-03-17 Thread Roderick A. Anderson
Tom Lane wrote: Josh Kupershmidt writes: Also, a more minor quibble about the same section: the first example says: To create a B-tree index on the column title in the table films: CREATE UNIQUE INDEX title_idx ON films (title); Perhaps the mention of "B-tree" should be omitted here,

Re: [DOCS] Incorrect SQL on CREATE INDEX page

2010-03-17 Thread Tom Lane
Josh Kupershmidt writes: > In the "Examples" section of the page for CREATE INDEX: > http://www.postgresql.org/docs/current/static/sql-createindex.html > it says: >To create a GIN index with fast updates disabled: >CREATE INDEX gin_idx ON documents_table (locations) WITH (fastupdate = > o

[DOCS] Incorrect SQL on CREATE INDEX page

2010-03-17 Thread Josh Kupershmidt
In the "Examples" section of the page for CREATE INDEX: http://www.postgresql.org/docs/current/static/sql-createindex.html it says: To create a GIN index with fast updates disabled: CREATE INDEX gin_idx ON documents_table (locations) WITH (fastupdate = off); This SQL fails with 'ERROR: unre