pgsql: Fix typo

2020-03-06 Thread Peter Eisentraut
Fix typo Branch -- REL_10_STABLE Details --- https://git.postgresql.org/pg/commitdiff/5c2e2a2227ea60fbd7518ba357c2c0193fa62fea Modified Files -- src/backend/catalog/objectaddress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

pgsql: Fix typo

2020-03-06 Thread Peter Eisentraut
Fix typo Branch -- REL_12_STABLE Details --- https://git.postgresql.org/pg/commitdiff/b2019c21345d9e1af0f12b76a904b49665f3d829 Modified Files -- src/backend/catalog/objectaddress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

pgsql: Fix typo

2020-03-06 Thread Peter Eisentraut
Fix typo Branch -- master Details --- https://git.postgresql.org/pg/commitdiff/8d7def5c27c18c85deaf4e55c39a074600f36b48 Modified Files -- src/backend/catalog/objectaddress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

pgsql: Fix typo

2020-03-06 Thread Peter Eisentraut
Fix typo Branch -- REL_11_STABLE Details --- https://git.postgresql.org/pg/commitdiff/53a039da62bb967c60522572e1e69e25cc94d6ed Modified Files -- src/backend/catalog/objectaddress.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

Re: pgsql: Revert "initdb: Change authentication defaults"

2020-03-06 Thread Andrew Dunstan
On 3/6/20 9:04 PM, Tom Lane wrote: > Andrew Dunstan writes: >> We're down to 13 animals behind release 11. Special thanks to Andres >> Freund and Mark Wong for updating their large collections of animals. > Cool, but I see a few more than that: > > sysname| snapshot |

Re: pgsql: Revert "initdb: Change authentication defaults"

2020-03-06 Thread Michael Paquier
On Fri, Mar 06, 2020 at 09:04:29PM -0500, Tom Lane wrote: > Cool, but I see a few more than that: > > sysname| snapshot | l > > ---+-+-- >

Re: pgsql: Revert "initdb: Change authentication defaults"

2020-03-06 Thread Tom Lane
Andrew Dunstan writes: > We're down to 13 animals behind release 11. Special thanks to Andres > Freund and Mark Wong for updating their large collections of animals. Cool, but I see a few more than that: sysname| snapshot | l

Re: pgsql: Revert "initdb: Change authentication defaults"

2020-03-06 Thread Andrew Dunstan
On 3/5/20 1:08 PM, Magnus Hagander wrote: > On Mon, Mar 2, 2020 at 3:36 PM Andrew Dunstan > wrote: >> >> On 3/2/20 2:05 AM, Tom Lane wrote: >>> Andrew Dunstan writes: On Sat, Feb 29, 2020 at 10:41 AM Tom Lane wrote: > Did the buildfarm adjustments get made? (I'm assuming Andrew

pgsql: Create contrib/bool_plperl to provide a bool transform for PL/Pe

2020-03-06 Thread Tom Lane
Create contrib/bool_plperl to provide a bool transform for PL/Perl[U]. plperl's default handling of bool arguments or results is not terribly satisfactory, since Perl doesn't consider the string 'f' to be false. Ideally we'd just fix that, but the backwards-compatibility hazard would be

pgsql: Allow Unicode escapes in any server encoding, not only UTF-8.

2020-03-06 Thread Tom Lane
Allow Unicode escapes in any server encoding, not only UTF-8. SQL includes provisions for numeric Unicode escapes in string literals and identifiers. Previously we only accepted those if they represented ASCII characters or the server encoding was UTF-8, making the conversion to internal form

Re: pgsql: Avoid -Wconversion warnings when using checksum_impl.h

2020-03-06 Thread Andres Freund
Hi, On 2020-03-05 12:51:50 -0500, David Steele wrote: > On 3/5/20 12:13 AM, Michael Paquier wrote: > > Avoid -Wconversion warnings when using checksum_impl.h > > > > This does not matter much when compiling Postgres proper as many > > warnings exist when enabling this compilation flag, but it

pgsql: Allow ALTER TYPE to change some properties of a base type.

2020-03-06 Thread Tom Lane
Allow ALTER TYPE to change some properties of a base type. Specifically, this patch allows ALTER TYPE to: * Change the default TOAST strategy for a toastable base type; * Promote a non-toastable type to toastable; * Add/remove binary I/O functions for a type; * Add/remove typmod I/O functions for