pgsql: Fix typo in pathnode.c

2019-08-06 Thread Michael Paquier
Fix typo in pathnode.c Author: Amit Langote Discussion: https://postgr.es/m/CA+HiwqFhZ6ABoz-i=jz5wmmyz-orx4asjr0og9qbtgewoww...@mail.gmail.com Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/940c8b01b071b777ed56c086c383e054fbd0456e Modified Files -- sr

pgsql: Tag refs/tags/REL9_4_24 was created

2019-08-06 Thread noreply
Tag refs/tags/REL9_4_24 was created.

pgsql: Tag refs/tags/REL9_5_19 was created

2019-08-06 Thread noreply
Tag refs/tags/REL9_5_19 was created.

pgsql: Tag refs/tags/REL_12_BETA3 was created

2019-08-06 Thread noreply
Tag refs/tags/REL_12_BETA3 was created.

pgsql: Tag refs/tags/REL_10_10 was created

2019-08-06 Thread noreply
Tag refs/tags/REL_10_10 was created.

pgsql: Tag refs/tags/REL9_6_15 was created

2019-08-06 Thread noreply
Tag refs/tags/REL9_6_15 was created.

pgsql: Tag refs/tags/REL_11_5 was created

2019-08-06 Thread noreply
Tag refs/tags/REL_11_5 was created.

pgsql: Save Kerberos and LDAP daemon logs where the buildfarm can find

2019-08-06 Thread Tom Lane
Save Kerberos and LDAP daemon logs where the buildfarm can find them. src/test/kerberos and src/test/ldap try to run private authentication servers, which of course might fail. The logs from these servers were being dropped into the tmp_check/ subdirectory, but they should be put in tmp_check/log

pgsql: Save Kerberos and LDAP daemon logs where the buildfarm can find

2019-08-06 Thread Tom Lane
Save Kerberos and LDAP daemon logs where the buildfarm can find them. src/test/kerberos and src/test/ldap try to run private authentication servers, which of course might fail. The logs from these servers were being dropped into the tmp_check/ subdirectory, but they should be put in tmp_check/log

pgsql: Save Kerberos and LDAP daemon logs where the buildfarm can find

2019-08-06 Thread Tom Lane
Save Kerberos and LDAP daemon logs where the buildfarm can find them. src/test/kerberos and src/test/ldap try to run private authentication servers, which of course might fail. The logs from these servers were being dropped into the tmp_check/ subdirectory, but they should be put in tmp_check/log

pgsql: Fix intarray's GiST opclasses to not fail for empty arrays with

2019-08-06 Thread Tom Lane
Fix intarray's GiST opclasses to not fail for empty arrays with <@. contrib/intarray considers "arraycol <@ constant-array" to be indexable, but its GiST opclass code fails to reliably find index entries for empty array values (which of course should trivially match such queries). This is because

pgsql: Fix intarray's GiST opclasses to not fail for empty arrays with

2019-08-06 Thread Tom Lane
Fix intarray's GiST opclasses to not fail for empty arrays with <@. contrib/intarray considers "arraycol <@ constant-array" to be indexable, but its GiST opclass code fails to reliably find index entries for empty array values (which of course should trivially match such queries). This is because

pgsql: Fix intarray's GiST opclasses to not fail for empty arrays with

2019-08-06 Thread Tom Lane
Fix intarray's GiST opclasses to not fail for empty arrays with <@. contrib/intarray considers "arraycol <@ constant-array" to be indexable, but its GiST opclass code fails to reliably find index entries for empty array values (which of course should trivially match such queries). This is because

pgsql: Fix intarray's GiST opclasses to not fail for empty arrays with

2019-08-06 Thread Tom Lane
Fix intarray's GiST opclasses to not fail for empty arrays with <@. contrib/intarray considers "arraycol <@ constant-array" to be indexable, but its GiST opclass code fails to reliably find index entries for empty array values (which of course should trivially match such queries). This is because

pgsql: Fix intarray's GiST opclasses to not fail for empty arrays with

2019-08-06 Thread Tom Lane
Fix intarray's GiST opclasses to not fail for empty arrays with <@. contrib/intarray considers "arraycol <@ constant-array" to be indexable, but its GiST opclass code fails to reliably find index entries for empty array values (which of course should trivially match such queries). This is because

pgsql: Fix intarray's GiST opclasses to not fail for empty arrays with

2019-08-06 Thread Tom Lane
Fix intarray's GiST opclasses to not fail for empty arrays with <@. contrib/intarray considers "arraycol <@ constant-array" to be indexable, but its GiST opclass code fails to reliably find index entries for empty array values (which of course should trivially match such queries). This is because

pgsql: Fix intarray's GiST opclasses to not fail for empty arrays with

2019-08-06 Thread Tom Lane
Fix intarray's GiST opclasses to not fail for empty arrays with <@. contrib/intarray considers "arraycol <@ constant-array" to be indexable, but its GiST opclass code fails to reliably find index entries for empty array values (which of course should trivially match such queries). This is because

pgsql: Adjust tuple data lookup logic in multi-insert logical decoding

2019-08-06 Thread Michael Paquier
Adjust tuple data lookup logic in multi-insert logical decoding As of now, logical decoding of a multi-insert has been scanning all xl_multi_insert_tuple entries only if XLH_INSERT_CONTAINS_NEW_TUPLE was getting set in the record. This is not an issue on HEAD as multi-insert records are not used