pgsql: Refresh some incorrect links in pg_crc.c/h

2019-10-15 Thread Michael Paquier
Refresh some incorrect links in pg_crc.c/h Author: Vignesh C Discussion: https://postgr.es/m/CALDaNm0LPk9vTGTBPBRv0=fX=94o4r6-dubbhnecn2ah5bu...@mail.gmail.com Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/1de4fd10922b96b6d90838181c59c1a45f8a95f6 Modified Files

Re: pgsql: Fix table rewrites that include a column without a default.

2019-10-15 Thread Michael Paquier
On Thu, Oct 10, 2019 at 05:16:08PM -0400, Tom Lane wrote: > I really really don't want an event trigger running in everything that > runs in parallel with alter_table. That's a debugging nightmare of > monster proportions. +1, that's not stable. elver has just complained about a side effect of t

pgsql: Remove obsolete collation test.

2019-10-15 Thread Thomas Munro
Remove obsolete collation test. The previous commit forgot to remove this test, which no longer holds on all systems. Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/cce95a2f029e546dc461d7ec1760e2c3a247b0e7 Modified Files -- src/test/regress/expected/co

pgsql: Use libc version as a collation version on glibc systems.

2019-10-15 Thread Thomas Munro
Use libc version as a collation version on glibc systems. Using glibc's version string to detect potential collation definition changes is not 100% reliable, but it's better than nothing. Currently this affects only collations explicitly provided by "libc". More work will be needed to handle the

pgsql: Doc: Fix incorrect contributor name in release notes

2019-10-15 Thread Michael Paquier
Doc: Fix incorrect contributor name in release notes A typo from commit 27b4121 is at the origin of the mistake. Author: Alexander Lakhin Discussion: https://postgr.es/m/[email protected] Branch -- REL_12_STABLE Details --- https://git.postgresql.org/pg/comm

pgsql: Doc: Fix various inconsistencies

2019-10-15 Thread Michael Paquier
Doc: Fix various inconsistencies This fixes multiple areas of the documentation: - COPY for its past compatibility section. - SET ROLE mentioning INHERITS instead of INHERIT - PREPARE referring to stmt_name, that is not present. - Extension documentation about format name with upgrade scripts. Ba

pgsql: Doc: Fix various inconsistencies

2019-10-15 Thread Michael Paquier
Doc: Fix various inconsistencies This fixes multiple areas of the documentation: - COPY for its past compatibility section. - SET ROLE mentioning INHERITS instead of INHERIT - PREPARE referring to stmt_name, that is not present. - Extension documentation about format name with upgrade scripts. Ba

pgsql: Doc: Fix various inconsistencies

2019-10-15 Thread Michael Paquier
Doc: Fix various inconsistencies This fixes multiple areas of the documentation: - COPY for its past compatibility section. - SET ROLE mentioning INHERITS instead of INHERIT - PREPARE referring to stmt_name, that is not present. - Extension documentation about format name with upgrade scripts. Ba

pgsql: Doc: Fix various inconsistencies

2019-10-15 Thread Michael Paquier
Doc: Fix various inconsistencies This fixes multiple areas of the documentation: - COPY for its past compatibility section. - SET ROLE mentioning INHERITS instead of INHERIT - PREPARE referring to stmt_name, that is not present. - Extension documentation about format name with upgrade scripts. Ba

pgsql: Doc: Fix various inconsistencies

2019-10-15 Thread Michael Paquier
Doc: Fix various inconsistencies This fixes multiple areas of the documentation: - COPY for its past compatibility section. - SET ROLE mentioning INHERITS instead of INHERIT - PREPARE referring to stmt_name, that is not present. - Extension documentation about format name with upgrade scripts. Ba

pgsql: Doc: Fix various inconsistencies

2019-10-15 Thread Michael Paquier
Doc: Fix various inconsistencies This fixes multiple areas of the documentation: - COPY for its past compatibility section. - SET ROLE mentioning INHERITS instead of INHERIT - PREPARE referring to stmt_name, that is not present. - Extension documentation about format name with upgrade scripts. Ba

pgsql: Doc: Fix various inconsistencies

2019-10-15 Thread Michael Paquier
Doc: Fix various inconsistencies This fixes multiple areas of the documentation: - COPY for its past compatibility section. - SET ROLE mentioning INHERITS instead of INHERIT - PREPARE referring to stmt_name, that is not present. - Extension documentation about format name with upgrade scripts. Ba

pgsql: Fix CLUSTER on expression indexes.

2019-10-15 Thread Andres Freund
Fix CLUSTER on expression indexes. Since the introduction of different slot types, in 1a0586de3657, we create a virtual slot in tuplesort_begin_cluster(). While that looks right, it unfortunately doesn't actually work, as ExecStoreHeapTuple() is used to store tuples in the slot. Unfortunately no r

pgsql: Fix CLUSTER on expression indexes.

2019-10-15 Thread Andres Freund
Fix CLUSTER on expression indexes. Since the introduction of different slot types, in 1a0586de3657, we create a virtual slot in tuplesort_begin_cluster(). While that looks right, it unfortunately doesn't actually work, as ExecStoreHeapTuple() is used to store tuples in the slot. Unfortunately no r