pgsql: Doc: improve explanation of when custom GUCs appear in pg_settin

2022-09-10 Thread Tom Lane
Doc: improve explanation of when custom GUCs appear in pg_settings. Be more clear about when and how an extension-defined GUC comes to be visible in pg_settings. (Move the para to the bottom of the page, too; whoever thought this point was more important than the para about the view being updatab

pgsql: Doc: improve explanation of when custom GUCs appear in pg_settin

2022-09-10 Thread Tom Lane
Doc: improve explanation of when custom GUCs appear in pg_settings. Be more clear about when and how an extension-defined GUC comes to be visible in pg_settings. (Move the para to the bottom of the page, too; whoever thought this point was more important than the para about the view being updatab

pgsql: Add psql tab compression for ALTER TABLE .. { OF | NOT OF }

2022-09-10 Thread Michael Paquier
Add psql tab compression for ALTER TABLE .. { OF | NOT OF } ALTER TABLE .. OF is now able to complete with the list of available composite types that can be used with the query. Author: Aleksander Alekseev Reviewed-by: Shinya Kato Discussion: https://postgr.es/m/47b71e0c523b30357208e79786161...@o

Re: pgsql: aix: No need to use mkldexport when we want to export all symbol

2022-09-10 Thread Andres Freund
Hi, On 2022-09-09 22:57:36 -0700, Andres Freund wrote: > On 2022-09-10 01:32:52 -0400, Tom Lane wrote: > > Andres Freund writes: > > > It seem worth applying the -qvisibility patch and seeing whether that > > > fixes > > > the buildfarm? > > > > Worth a try. > > Done now. Seems to have done t

pgsql: Free correctly LDAPMessage returned by ldap_search_s() in auth.c

2022-09-10 Thread Michael Paquier
Free correctly LDAPMessage returned by ldap_search_s() in auth.c The LDAP wiki states that the search message should be freed regardless of the return value of ldap_search_s(), but we failed to do so in one backend code path when searching LDAP with a filter. This is not critical in an authentica