[COMMITTERS] pgsql: In SSL tests, don't scribble on permissions of a repo file.

2017-05-15 Thread Tom Lane
In SSL tests, don't scribble on permissions of a repo file. Modifying the permissions of a persistent file isn't really much nicer than modifying its contents, even if git doesn't currently notice it. Adjust the test script to make a copy and set the permissions of that instead. Michael Paquier,

[COMMITTERS] pgsql: In SSL tests, don't scribble on permissions of a repo file.

2017-05-15 Thread Tom Lane
In SSL tests, don't scribble on permissions of a repo file. Modifying the permissions of a persistent file isn't really much nicer than modifying its contents, even if git doesn't currently notice it. Adjust the test script to make a copy and set the permissions of that instead. Michael Paquier,

[COMMITTERS] pgsql: In SSL tests, don't scribble on permissions of a repo file.

2017-05-15 Thread Tom Lane
In SSL tests, don't scribble on permissions of a repo file. Modifying the permissions of a persistent file isn't really much nicer than modifying its contents, even if git doesn't currently notice it. Adjust the test script to make a copy and set the permissions of that instead. Michael Paquier,

[COMMITTERS] pgsql: Update CREATE SUBSCRIPTION docs for recent syntax change.

2017-05-15 Thread Tom Lane
Update CREATE SUBSCRIPTION docs for recent syntax change. Masahiko Sawada Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/6accefd46639db9f20bcc4c2e15c9844bae0d184 Modified Files -- doc/src/sgml/ref/create_subscription.sgml | 7 --- 1 file changed, 4

[COMMITTERS] pgsql: Stamp 10beta1.

2017-05-15 Thread Tom Lane
Stamp 10beta1. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/5ad367a35b58a02686558a0189ef74f123ac85ba Modified Files -- configure | 18 +- configure.in | 2 +- doc/bug.template | 2 +- sr

[COMMITTERS] pgsql: git-ignore intermediate files from new docs toolchain.

2017-05-15 Thread Tom Lane
git-ignore intermediate files from new docs toolchain. Building PDFs with the new toolchain creates *.fo temporary files. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/1aedcf98181602890ea8899202a7143543f9785a Modified Files -- doc/src/sgml/.gitignore

[COMMITTERS] pgsql: Add missing apostrophe.

2017-05-15 Thread Robert Haas
Add missing apostrophe. Masahiko Sawada Discussion: http://postgr.es/m/cad21aoazar_xv7j7wk9-qyxafot8h4egkwxvfy63wc8lw2c...@mail.gmail.com Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/0ad226f2ae55620107eb61591d2f96236aec477c Modified Files -- src/ba

[COMMITTERS] pgsql: Update oidjoins regression test for v10.

2017-05-15 Thread Tom Lane
Update oidjoins regression test for v10. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/e3f67a5a1732321dfa094e14c083dc482ad066b4 Modified Files -- src/test/regress/expected/oidjoins.out | 72 ++ src/test/regress/sql/oidjoi

[COMMITTERS] pgsql: Add assertion to quiet Coverity

2017-05-15 Thread Peter Eisentraut
Add assertion to quiet Coverity Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/b1ff33fd9bb82937f4719f264972e6a3c83cdb89 Modified Files -- src/backend/commands/subscriptioncmds.c | 3 +++ 1 file changed, 3 insertions(+) -- Sent via pgsql-committers mai

[COMMITTERS] pgsql: Translation updates

2017-05-15 Thread Peter Eisentraut
Translation updates Source-Git-URL: git://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: 398beeef4921df0956f917becd7b5669d2a8a5c4 Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/82d24bab75d4f85ae7a6d89f149d29fbb2ccbc70 Modified Files ---

[COMMITTERS] pgsql: doc: Remove unused file

2017-05-15 Thread Peter Eisentraut
doc: Remove unused file sql.sgml has not been part of the documentation since forever, so it's pointless to keep it around. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/4b99d32b2b0de97063b85a0ea69d482d8a4bf075 Modified Files -- doc/src/sgml/filelist.

[COMMITTERS] pgsql: Fix bogus syntax for CREATE PUBLICATION commands emitted by pg_d

2017-05-15 Thread Tom Lane
Fix bogus syntax for CREATE PUBLICATION commands emitted by pg_dump. Original coding was careless about where to insert commas. Masahiko Sawada Discussion: https://postgr.es/m/3427593a-61aa-b17e-64ef-383b7742d...@enterprisedb.com Branch -- master Details --- https://git.postgresql.org

[COMMITTERS] pgsql: Fix unsafe reference into relcache in constructed CommentStmt.

2017-05-15 Thread Tom Lane
Fix unsafe reference into relcache in constructed CommentStmt. The CommentStmt made by RebuildConstraintComment() has to pstrdup the relation name, else it will contain a dangling pointer after that relcache entry is flushed. (I'm less sure that pstrdup'ing conname is necessary, but let's be safe

[COMMITTERS] pgsql: Fix unsafe reference into relcache in constructed CommentStmt.

2017-05-15 Thread Tom Lane
Fix unsafe reference into relcache in constructed CommentStmt. The CommentStmt made by RebuildConstraintComment() has to pstrdup the relation name, else it will contain a dangling pointer after that relcache entry is flushed. (I'm less sure that pstrdup'ing conname is necessary, but let's be safe

[COMMITTERS] pgsql: Fix unsafe reference into relcache in constructed CommentStmt.

2017-05-15 Thread Tom Lane
Fix unsafe reference into relcache in constructed CommentStmt. The CommentStmt made by RebuildConstraintComment() has to pstrdup the relation name, else it will contain a dangling pointer after that relcache entry is flushed. (I'm less sure that pstrdup'ing conname is necessary, but let's be safe

[COMMITTERS] pgsql: Fix ALTER SEQUENCE locking

2017-05-15 Thread Peter Eisentraut
Fix ALTER SEQUENCE locking In 1753b1b027035029c2a2a1649065762fafbf63f3, the pg_sequence system catalog was introduced. This made sequence metadata changes transactional, while the actual sequence values are still behaving nontransactionally. This requires some refinement in how ALTER SEQUENCE, w

[COMMITTERS] pgsql: Fix typo in comment

2017-05-15 Thread Magnus Hagander
Fix typo in comment Michael Paquier Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/b1c45afb01248f5d6d6d2f0761a35843576f940f Modified Files -- src/bin/pg_basebackup/pg_basebackup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent via pgsq