[COMMITTERS] pgsql: Fix additional format warning

2011-09-11 Thread Peter Eisentraut
Fix additional format warning Apparently, this only happens on 64-bit platforms. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/02bca4f35164dd1873eab9b8e6167e42a79157c4 Modified Files -- src/interfaces/ecpg/ecpglib/error.c |2 +- 1 files changed, 1 i

[COMMITTERS] pgsql: Fix permissions on pg_largeobject_metadata.h in 9.0 branch.

2011-09-11 Thread Tom Lane
Fix permissions on pg_largeobject_metadata.h in 9.0 branch. For some reason it was 0755 instead of 0644. Branch -- REL9_0_STABLE Details --- http://git.postgresql.org/pg/commitdiff/4de174d4bfa8e162cf64fb9bf7393fea05b0dee7 Modified Files -- 0 files changed, 0 insertions(+), 0

[COMMITTERS] pgsql: Remove many -Wcast-qual warnings

2011-09-11 Thread Peter Eisentraut
Remove many -Wcast-qual warnings This addresses only those cases that are easy to fix by adding or moving a const qualifier or removing an unnecessary cast. There are many more complicated cases remaining. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/1b81c2fe6ee2

[COMMITTERS] pgsql: Remove no-longer-used variable.

2011-09-11 Thread Tom Lane
Remove no-longer-used variable. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/5f42e5945b3dd96c228531c0730f418846ced04e Modified Files -- contrib/pgbench/pgbench.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) -- Sent via pgsql-committers

[COMMITTERS] pgsql: Invent a new memory context primitive, MemoryContextSetParent.

2011-09-11 Thread Tom Lane
Invent a new memory context primitive, MemoryContextSetParent. This function will be useful for altering the lifespan of a context after creation (for example, by creating it under a transient context and later reparenting it to belong to a long-lived context). It costs almost no new code, since