[COMMITTERS] pgsql: Fix ALTER EXTENSION / SET SCHEMA

2012-10-31 Thread Alvaro Herrera
Fix ALTER EXTENSION / SET SCHEMA In its original conception, it was leaving some objects into the old schema, but without their proper pg_depend entries; this meant that the old schema could be dropped, causing future pg_dump calls to fail on the affected database. This was originally reported by

[COMMITTERS] pgsql: Fix ALTER EXTENSION / SET SCHEMA

2012-10-31 Thread Alvaro Herrera
Fix ALTER EXTENSION / SET SCHEMA In its original conception, it was leaving some objects into the old schema, but without their proper pg_depend entries; this meant that the old schema could be dropped, causing future pg_dump calls to fail on the affected database. This was originally reported by

[COMMITTERS] pgsql: Fix ALTER EXTENSION / SET SCHEMA

2012-10-31 Thread Alvaro Herrera
Fix ALTER EXTENSION / SET SCHEMA In its original conception, it was leaving some objects into the old schema, but without their proper pg_depend entries; this meant that the old schema could be dropped, causing future pg_dump calls to fail on the affected database. This was originally reported by

[COMMITTERS] pgsql: Fix erroneous choices of segNo variables

2012-10-31 Thread Alvaro Herrera
Fix erroneous choices of segNo variables Commit dfda6eba (which changed segment numbers to use a single 64 bit variable instead of log/seg) introduced a couple of bogus choices of exactly which log segment number variable to use in each case. This is currently pretty harmless; in one place, the b

[COMMITTERS] pgsql: Document that TCP keepalive settings read as 0 on Unix-socket co

2012-10-31 Thread Tom Lane
Document that TCP keepalive settings read as 0 on Unix-socket connections. Per bug #7631 from Rob Johnson. The code is operating as designed, but the docs didn't explain it. Branch -- REL9_2_STABLE Details --- http://git.postgresql.org/pg/commitdiff/ec397c90990f5c5c08990a7ab378e32101b2e

[COMMITTERS] pgsql: Document that TCP keepalive settings read as 0 on Unix-socket co

2012-10-31 Thread Tom Lane
Document that TCP keepalive settings read as 0 on Unix-socket connections. Per bug #7631 from Rob Johnson. The code is operating as designed, but the docs didn't explain it. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/e774b7649ca6b459f10e7748835eb15a096a4587 Mo

[COMMITTERS] pgsql: Document that TCP keepalive settings read as 0 on Unix-socket co

2012-10-31 Thread Tom Lane
Document that TCP keepalive settings read as 0 on Unix-socket connections. Per bug #7631 from Rob Johnson. The code is operating as designed, but the docs didn't explain it. Branch -- REL9_0_STABLE Details --- http://git.postgresql.org/pg/commitdiff/d997bd2c50c15b8e33b02004e580f68e29a61

[COMMITTERS] pgsql: Document that TCP keepalive settings read as 0 on Unix-socket co

2012-10-31 Thread Tom Lane
Document that TCP keepalive settings read as 0 on Unix-socket connections. Per bug #7631 from Rob Johnson. The code is operating as designed, but the docs didn't explain it. Branch -- REL9_1_STABLE Details --- http://git.postgresql.org/pg/commitdiff/c22acf455842765e08f58ee308a43882cfcc1

[COMMITTERS] pgsql: Fix erroneous choice of timeline variable, too

2012-10-31 Thread Alvaro Herrera
Fix erroneous choice of timeline variable, too Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/2f1692d213a90d7441fd2940f2c43d100b90c607 Modified Files -- src/backend/access/transam/xlog.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- Se

[COMMITTERS] pgsql: Have make never delete intermediate files automatically

2012-10-31 Thread Peter Eisentraut
Have make never delete intermediate files automatically Several hacks in certain modes already thought this was a bad idea, so just disable it globally. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/1eb1dde049ccfffc42c80c2bcec14155c58bcc1f Modified Files -