pgsql: Add description about GSSOpenServer wait event into document.

2020-02-16 Thread Fujii Masao
Add description about GSSOpenServer wait event into document. This commit also updates wait event enum into alphabetical order. Previously the enum entry for GSSOpenServer was added out-of-order. Back-patch to v12 where commit b0b39f72b9 introduced GSSOpenServer wait event. In v12, the commit doe

pgsql: Add description about GSSOpenServer wait event into document.

2020-02-16 Thread Fujii Masao
Add description about GSSOpenServer wait event into document. This commit also updates wait event enum into alphabetical order. Previously the enum entry for GSSOpenServer was added out-of-order. Back-patch to v12 where commit b0b39f72b9 introduced GSSOpenServer wait event. In v12, the commit doe

pgsql: Add description about LogicalRewriteTruncate wait event into doc

2020-02-16 Thread Fujii Masao
Add description about LogicalRewriteTruncate wait event into document. Back-patch to v10 where commit 249cf070e3 introduced LogicalRewriteTruncate wait event. Author: Fujii Masao Reviewed-by: Michael Paquier Discussion: https://postgr.es/m/[email protected] Br

pgsql: Add description about LogicalRewriteTruncate wait event into doc

2020-02-16 Thread Fujii Masao
Add description about LogicalRewriteTruncate wait event into document. Back-patch to v10 where commit 249cf070e3 introduced LogicalRewriteTruncate wait event. Author: Fujii Masao Reviewed-by: Michael Paquier Discussion: https://postgr.es/m/[email protected] Br

pgsql: Add description about LogicalRewriteTruncate wait event into doc

2020-02-16 Thread Fujii Masao
Add description about LogicalRewriteTruncate wait event into document. Back-patch to v10 where commit 249cf070e3 introduced LogicalRewriteTruncate wait event. Author: Fujii Masao Reviewed-by: Michael Paquier Discussion: https://postgr.es/m/[email protected] Br

pgsql: Add description about LogicalRewriteTruncate wait event into doc

2020-02-16 Thread Fujii Masao
Add description about LogicalRewriteTruncate wait event into document. Back-patch to v10 where commit 249cf070e3 introduced LogicalRewriteTruncate wait event. Author: Fujii Masao Reviewed-by: Michael Paquier Discussion: https://postgr.es/m/[email protected] Br

pgsql: Try again to work around Windows' ERROR_SHARING_VIOLATION in pg_

2020-02-16 Thread Tom Lane
Try again to work around Windows' ERROR_SHARING_VIOLATION in pg_ctl. Commit 0da33c762 introduced an unfortunate regression in pg_ctl on Windows: if the log file specified with -l doesn't exist yet, and pg_ctl is running with Administrator privileges, then the log file might get created with permis

pgsql: Try again to work around Windows' ERROR_SHARING_VIOLATION in pg_

2020-02-16 Thread Tom Lane
Try again to work around Windows' ERROR_SHARING_VIOLATION in pg_ctl. Commit 0da33c762 introduced an unfortunate regression in pg_ctl on Windows: if the log file specified with -l doesn't exist yet, and pg_ctl is running with Administrator privileges, then the log file might get created with permis

Re: pgsql: Logical Tape Set: lazily allocate read buffer.

2020-02-16 Thread Tom Lane
Jeff Davis writes: > Logical Tape Set: lazily allocate read buffer. Coverity is not very pleased with this patch: it's spewing warnings like 1112 if (lt->buffer == NULL) 1113 ltsInitReadBuffer(lts, lt); 1114 1115 if (blocknum != lt->curBlockNumber) 1116 {