[COMMITTERS] pgsql: Remove inbound links to sql-createuser

2017-10-31 Thread Stephen Frost
Remove inbound links to sql-createuser CREATE USER is an alias for CREATE ROLE, not its own command any longer, so clean up references to the 'sql-createuser' link to go to 'sql-createrole' instead. In passing, change a few cases of 'CREATE USER' to be 'CREATE ROLE ... LOGIN'. The remaining cas

[COMMITTERS] pgsql: Fix underqualified cast-target type names in pg_dump and psql qu

2017-10-31 Thread Tom Lane
Fix underqualified cast-target type names in pg_dump and psql queries. Queries running with some non-pg_catalog schema frontmost in their search path need to be careful to schema-qualify type names that should be sought in pg_catalog. Vitaly Burovoy reported an oversight of this sort in pg_dump's

[COMMITTERS] pgsql: Fix underqualified cast-target type names in pg_dump and psql qu

2017-10-31 Thread Tom Lane
Fix underqualified cast-target type names in pg_dump and psql queries. Queries running with some non-pg_catalog schema frontmost in their search path need to be careful to schema-qualify type names that should be sought in pg_catalog. Vitaly Burovoy reported an oversight of this sort in pg_dump's

[COMMITTERS] pgsql: Don't exaggerate the number of temporary blocks read.

2017-10-31 Thread Robert Haas
Don't exaggerate the number of temporary blocks read. A read that returns zero bytes (or an error) should not increment the number of temporary blocks read. Thomas Munro Discussion: http://postgr.es/m/CAEepm=21xgihg=wag+o5mfotezfn6kfetpfw+rksneqnqqg...@mail.gmail.com Branch -- master Deta

[COMMITTERS] pgsql: Fix code related to partitioning schemes for dropped columns.

2017-10-31 Thread Robert Haas
Fix code related to partitioning schemes for dropped columns. The entry in appinfo->translated_vars can be NULL; if so, we must avoid dereferencing it. Ashutosh Bapat Discussion: http://postgr.es/m/CAFjFpReL7+1ien=-21rhjpo3bv7aam1rq8xglvk2csfagsz...@mail.gmail.com Branch -- master Details