Re: pgsql: Support all SQL:2011 options for window frame clauses.

2018-02-07 Thread Vik Fearing
On 02/07/2018 06:07 AM, Tom Lane wrote: > Support all SQL:2011 options for window frame clauses. I think this is my personal favorite patch for v11. Thanks! -- Vik Fearing +33 6 46 75 15 36 http://2ndQuadrant.fr PostgreSQL : Expertise, Formation et Su

pgsql: Change default git repo URL to https

2018-02-07 Thread Magnus Hagander
Change default git repo URL to https Since we now support the server side handler for git over https (so we're no longer using the "dumb protocol"), make https the primary choice for cloning the repository, and the git protocol the secondary choice. In passing, also change the links to git-scm.co

pgsql: Change default git repo URL to https

2018-02-07 Thread Magnus Hagander
Change default git repo URL to https Since we now support the server side handler for git over https (so we're no longer using the "dumb protocol"), make https the primary choice for cloning the repository, and the git protocol the secondary choice. In passing, also change the links to git-scm.co

pgsql: Change default git repo URL to https

2018-02-07 Thread Magnus Hagander
Change default git repo URL to https Since we now support the server side handler for git over https (so we're no longer using the "dumb protocol"), make https the primary choice for cloning the repository, and the git protocol the secondary choice. In passing, also change the links to git-scm.co

pgsql: Change default git repo URL to https

2018-02-07 Thread Magnus Hagander
Change default git repo URL to https Since we now support the server side handler for git over https (so we're no longer using the "dumb protocol"), make https the primary choice for cloning the repository, and the git protocol the secondary choice. In passing, also change the links to git-scm.co

pgsql: Change default git repo URL to https

2018-02-07 Thread Magnus Hagander
Change default git repo URL to https Since we now support the server side handler for git over https (so we're no longer using the "dumb protocol"), make https the primary choice for cloning the repository, and the git protocol the secondary choice. In passing, also change the links to git-scm.co

pgsql: Change default git repo URL to https

2018-02-07 Thread Magnus Hagander
Change default git repo URL to https Since we now support the server side handler for git over https (so we're no longer using the "dumb protocol"), make https the primary choice for cloning the repository, and the git protocol the secondary choice. In passing, also change the links to git-scm.co

pgsql: Remove prototype for fmgr() function, which no longer exists.

2018-02-07 Thread Robert Haas
Remove prototype for fmgr() function, which no longer exists. Commit 5ded4bd21403e143dd3eb66b92d52732fdac1945 removed the code for this function, but neglected to remove the prototype and associated comments. Dagfinn Ilmari Mannsåker Discussion: http://postgr.es/m/d8j4lmuxjzk@dalvik.ping.uio

Re: [COMMITTERS] pgsql: Remove secondary checkpoint

2018-02-07 Thread Robert Haas
On Tue, Feb 6, 2018 at 4:42 PM, Thomas Munro wrote: > On Wed, Nov 8, 2017 at 6:57 AM, Simon Riggs wrote: >> Remove secondary checkpoint > > I think this comment in xlog.c was missed: > > - /* > -* Get the last valid checkpoint record. If the > latest one according >

pgsql: Update out-of-date comment in StartupXLOG.

2018-02-07 Thread Robert Haas
Update out-of-date comment in StartupXLOG. Commit 4b0d28de06b28e57c540fca458e4853854fbeaf8 should have updated this comment, but did not. Thomas Munro Discussion: http://postgr.es/m/CAEepm=0ij8aqqcf9ij2kerakuhf3swrvtzjmdm1h4w++nfb...@mail.gmail.com Branch -- master Details --- https:/

pgsql: Add more information_schema columns

2018-02-07 Thread Peter Eisentraut
Add more information_schema columns - table_constraints.enforced - triggers.action_order - triggers.action_reference_old_table - triggers.action_reference_new_table Reviewed-by: Michael Paquier Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/32ff2691173559e5f0ca3e

pgsql: Make new triggers tests more robust

2018-02-07 Thread Peter Eisentraut
Make new triggers tests more robust Add explicit collation on the trigger name to avoid locale dependencies. Also restrict the tables selected, to avoid interference from concurrently running tests. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/7c44b75a2a0705bf17d

pgsql: postgres_fdw: Push down UPDATE/DELETE joins to remote servers.

2018-02-07 Thread Robert Haas
postgres_fdw: Push down UPDATE/DELETE joins to remote servers. Commit 0bf3ae88af330496517722e391e7c975e6bad219 allowed direct foreign table modification; instead of fetching each row, updating it locally, and then pushing the modification back to the remote side, we would instead do all the work o

pgsql: postgres_fdw: Remove CTID output from some tests.

2018-02-07 Thread Robert Haas
postgres_fdw: Remove CTID output from some tests. Commit 1bc0100d270e5bcc980a0629b8726a32a497e788 added these tests, but they're not stable enough to survive in the buildfarm. Remove CTIDs from the output in the hopes of fixing that. Branch -- master Details --- https://git.postgresql.o

pgsql: Last-minute updates for release notes.

2018-02-07 Thread Tom Lane
Last-minute updates for release notes. Security: CVE-2018-1052, CVE-2018-1053 Branch -- REL9_3_STABLE Details --- https://git.postgresql.org/pg/commitdiff/01b2db1cd6673a94cc5249aa25b34e7d98535c11 Modified Files -- doc/src/sgml/release-9.3.sgml | 22 ++ 1 f

pgsql: Fix RelationBuildPartitionKey's processing of partition key expr

2018-02-07 Thread Tom Lane
Fix RelationBuildPartitionKey's processing of partition key expressions. Failure to advance the list pointer while reading partition expressions from a list results in invoking an input function with inappropriate data, possibly leading to crashes or, with carefully crafted input, disclosure of ar

pgsql: Last-minute updates for release notes.

2018-02-07 Thread Tom Lane
Last-minute updates for release notes. Security: CVE-2018-1052, CVE-2018-1053 Branch -- REL9_5_STABLE Details --- https://git.postgresql.org/pg/commitdiff/2a08ab38d33021d92d8ee31d9e386da63c39424d Modified Files -- doc/src/sgml/release-9.3.sgml | 22 ++ doc

pgsql: Last-minute updates for release notes.

2018-02-07 Thread Tom Lane
Last-minute updates for release notes. Security: CVE-2018-1052, CVE-2018-1053 Branch -- REL9_6_STABLE Details --- https://git.postgresql.org/pg/commitdiff/0ba3e3ec8166907df835895279bb9b832f6ae348 Modified Files -- doc/src/sgml/release-9.3.sgml | 22 ++ doc

pgsql: Last-minute updates for release notes.

2018-02-07 Thread Tom Lane
Last-minute updates for release notes. Security: CVE-2018-1052, CVE-2018-1053 Branch -- REL_10_STABLE Details --- https://git.postgresql.org/pg/commitdiff/cbe0dd581e7c7a815f6df6d849449225c902b17c Modified Files -- doc/src/sgml/release-10.sgml | 49 ++

pgsql: Last-minute updates for release notes.

2018-02-07 Thread Tom Lane
Last-minute updates for release notes. Security: CVE-2018-1052, CVE-2018-1053 Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/1eb5d43beed9d8cdc61377867f0a53eb2cfba0c4 Modified Files -- doc/src/sgml/release-10.sgml | 49 +

pgsql: Fix RelationBuildPartitionKey's processing of partition key expr

2018-02-07 Thread Tom Lane
Fix RelationBuildPartitionKey's processing of partition key expressions. Failure to advance the list pointer while reading partition expressions from a list results in invoking an input function with inappropriate data, possibly leading to crashes or, with carefully crafted input, disclosure of ar

pgsql: Last-minute updates for release notes.

2018-02-07 Thread Tom Lane
Last-minute updates for release notes. Security: CVE-2018-1052, CVE-2018-1053 Branch -- REL9_4_STABLE Details --- https://git.postgresql.org/pg/commitdiff/9a12ac37be9683da09c3dc33d0ee43728ca49517 Modified Files -- doc/src/sgml/release-9.3.sgml | 22 ++ doc

pgsql: Tag refs/tags/REL9_6_7 was created

2018-02-07 Thread pgsql
Tag refs/tags/REL9_6_7 was created.

pgsql: Tag refs/tags/REL9_5_11 was created

2018-02-07 Thread pgsql
Tag refs/tags/REL9_5_11 was created.

pgsql: Tag refs/tags/REL_10_2 was created

2018-02-07 Thread pgsql
Tag refs/tags/REL_10_2 was created.

pgsql: Tag refs/tags/REL9_4_16 was created

2018-02-07 Thread pgsql
Tag refs/tags/REL9_4_16 was created.

pgsql: Tag refs/tags/REL9_3_21 was created

2018-02-07 Thread pgsql
Tag refs/tags/REL9_3_21 was created.