Re: [DOCS] Correction

2017-11-19 Thread Tom Lane
demirgok...@gmail.com writes: > The following documentation comment has been logged on the website: > Page: https://www.postgresql.org/docs/9.4/static/datatype-json.html > Description: > Shouldn't be below statement: > "Although the jsonb_path_ops operator class supports only queries with > the

[DOCS] Correction

2017-11-19 Thread demirgokhan
The following documentation comment has been logged on the website: Page: https://www.postgresql.org/docs/9.4/static/datatype-json.html Description: Shouldn't be below statement: "Although the jsonb_path_ops operator class supports only queries with the @> operator, it has notable performance a

Re: [DOCS] Correction in SHARE ROW EXCLUSIVE lock description

2017-10-10 Thread Euler Taveira
2017-10-09 6:07 GMT-03:00 : > The following documentation comment has been logged on the website: > > Page: https://www.postgresql.org/docs/9.4/static/explicit-locking.html > Description: > > The documentation says : > > "This lock mode is not automatically acquired by any PostgreSQL > command."

[DOCS] Correction in SHARE ROW EXCLUSIVE lock description

2017-10-10 Thread diemersebastien
The following documentation comment has been logged on the website: Page: https://www.postgresql.org/docs/9.4/static/explicit-locking.html Description: The documentation says : "This lock mode is not automatically acquired by any PostgreSQL command." I am wrong if I say that a "ADD CONSTRAINT

[DOCS] Correction: Hashing speeds

2016-12-13 Thread James McLean
In my previous email I quoted an incorrect hashing speed. The correct speed should be 200GH/sec, and thus, 11 seconds to bruteforce all 8 character combinations of a-zA-Z0-9 - using the calculator at http://calc.opensecurityresearch.com/ Apologies for any confusion. -- Sent via pgsql-docs mail

Re: [DOCS] Correction for: "21.6. Tablespaces"

2013-07-31 Thread Ian Lawrence Barwick
2013/7/31 Fujii Masao : > On Wed, Jul 31, 2013 at 1:49 PM, Ian Lawrence Barwick > wrote: >> Hi >> >> The last paragraph on the page "21.6. Tablespaces": >> >> "and after you restart the server, update the pg_tablespace catalog >> with the new locations" >> >> is partially inaccurate as of Postgr

Re: [DOCS] Correction for: "21.6. Tablespaces"

2013-07-31 Thread Fujii Masao
On Wed, Jul 31, 2013 at 1:49 PM, Ian Lawrence Barwick wrote: > Hi > > The last paragraph on the page "21.6. Tablespaces": > > "and after you restart the server, update the pg_tablespace catalog > with the new locations" > > is partially inaccurate as of PostgreSQL 9.2, as the spclocation > column

[DOCS] Correction for: "21.6. Tablespaces"

2013-07-30 Thread Ian Lawrence Barwick
Hi The last paragraph on the page "21.6. Tablespaces": "and after you restart the server, update the pg_tablespace catalog with the new locations" is partially inaccurate as of PostgreSQL 9.2, as the spclocation column which is meant here was removed in 9.2 [2]). Patch attached; I also added a

Re: [DOCS] Correction: datatypes are not "faster"

2010-09-03 Thread Sylvain Rabot
On Thu, 2010-09-02 at 15:24 -0700, Josh Berkus wrote: > >> This paragraph leaves a *lot* to be desired from an accuracy perspective > > > > Really? Exactly which statements will you claim are incorrect? > > That the int type is definitely faster on all platforms regardless of > circumstances. E

Re: [DOCS] Correction: datatypes are not "faster"

2010-09-02 Thread Joshua D. Drake
> To this: > > On 32-bit operating systems, or when PostgreSQL is complied 32-bit, On 32-bit architectures, or when PostgreSQL is compiled as 32-bit binaries, operations using bigint may be slower than those with --- The problem I have with words like significant is that bigint is not noticeabl

Re: [DOCS] Correction: datatypes are not "faster"

2010-09-02 Thread Josh Berkus
>> This paragraph leaves a *lot* to be desired from an accuracy perspective > > Really? Exactly which statements will you claim are incorrect? That the int type is definitely faster on all platforms regardless of circumstances. Especially the circumstance where the user really needs a bigint a

Re: [DOCS] Correction: datatypes are not "faster"

2010-09-02 Thread Tom Lane
Josh Berkus writes: > "The type integer is the common choice, as it offers the best balance > between range, storage size, and performance. The smallint type is > generally only used if disk space is at a premium. The bigint type > should only be used if the integer range is insufficient, because

[DOCS] Correction: datatypes are not "faster"

2010-09-02 Thread Josh Berkus
All, This is currently in: http://www.postgresql.org/docs/current/interactive/datatype-numeric.html#DATATYPE-INT "The type integer is the common choice, as it offers the best balance between range, storage size, and performance. The smallint type is generally only used if disk space is at a prem

[DOCS] Correction for 12.2.2.1. Serializable Isolation versus True Serializability

2005-09-12 Thread Kevin Grittner
At least two other popular production database products provide true serializability, as described in PostgreSQL documentation (section 12.2.2.1 of 8.1 devel). I'm a big fan of PosgreSQL, but let's not overstate things. Some users may have applications with do depend on the true serializabilit

Re: [DOCS] docs correction (8.0 beta)

2004-08-25 Thread Bruce Momjian
Tom Lane wrote: > Bruce Momjian <[EMAIL PROTECTED]> writes: > > Tom Lane wrote: > >> You are confusing SQL and PL/pgSQL. > > > Any idea why they don't match between SQL and PL/pgSQL. > > Different lexers. > > We could talk about extending plpgsql's lexer to handle comments the > same way as the

Re: [DOCS] docs correction (8.0 beta)

2004-08-25 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > Tom Lane wrote: >> You are confusing SQL and PL/pgSQL. > Any idea why they don't match between SQL and PL/pgSQL. Different lexers. We could talk about extending plpgsql's lexer to handle comments the same way as the main SQL lexer, but it doesn't do so

Re: [DOCS] docs correction (8.0 beta)

2004-08-25 Thread Bruce Momjian
Tom Lane wrote: > John DeSoi <[EMAIL PROTECTED]> writes: > > From the example below and looking at scan.c, it seems that nested > > block comments are supported. > > You are confusing SQL and PL/pgSQL. Any idea why they don't match between SQL and PL/pgSQL. -- Bruce Momjian

Re: [DOCS] docs correction (8.0 beta)

2004-08-24 Thread Tom Lane
John DeSoi <[EMAIL PROTECTED]> writes: > From the example below and looking at scan.c, it seems that nested > block comments are supported. You are confusing SQL and PL/pgSQL. regards, tom lane ---(end of broadcast)--- TIP

[DOCS] docs correction (8.0 beta)

2004-08-24 Thread John DeSoi
From the example below and looking at scan.c, it seems that nested block comments are supported. test=# select /* /* nested */ */ 1; ?column? -- 1 (1 row) From section 35.3: There are two types of comments in PL/pgSQL. A double dash (--) starts a comment that extends to the en