[COMMITTERS] pgsql: Fixed some memory leaks in ECPG.

2015-06-12 Thread Michael Meskes
Fixed some memory leaks in ECPG. Patch by Michael Paquier Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/96ad72d1c00fa6526eb4d5e9c2a747b44752b4ee Modified Files -- src/interfaces/ecpg/preproc/descriptor.c | 12 +--- src/interfaces/ecpg/preproc/

[COMMITTERS] pgsql: Fix intoasc() in Informix compat lib. This function used to be a

2015-06-12 Thread Michael Meskes
Fix intoasc() in Informix compat lib. This function used to be a noop. Patch by Michael Paquier Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/82be1bf5099c0f6d1ef482ba3ca9cf1741db1eb3 Modified Files -- src/interfaces/ecpg/compatlib/informix.c |8 +++

[COMMITTERS] pgsql: Make postmaster restart archiver soon after it dies, even during

2015-06-12 Thread Fujii Masao
Make postmaster restart archiver soon after it dies, even during recovery. After the archiver dies, postmaster tries to start a new one immediately. But previously this could happen only while server was running normally even though archiving was enabled always (i.e., archive_mode was set to alway

[COMMITTERS] pgsql: Improve error message and hint for ALTER COLUMN TYPE can't-cast

2015-06-12 Thread Tom Lane
Improve error message and hint for ALTER COLUMN TYPE can't-cast failure. We already tried to improve this once, but the "improved" text was rather off-target if you had provided a USING clause. Also, it seems helpful to provide the exact text of a suggested USING clause, so users can just copy-an

[COMMITTERS] pgsql: Improve error message and hint for ALTER COLUMN TYPE can't-cast

2015-06-12 Thread Tom Lane
Improve error message and hint for ALTER COLUMN TYPE can't-cast failure. We already tried to improve this once, but the "improved" text was rather off-target if you had provided a USING clause. Also, it seems helpful to provide the exact text of a suggested USING clause, so users can just copy-an

[COMMITTERS] pgsql: Improve error message and hint for ALTER COLUMN TYPE can't-cast

2015-06-12 Thread Tom Lane
Improve error message and hint for ALTER COLUMN TYPE can't-cast failure. We already tried to improve this once, but the "improved" text was rather off-target if you had provided a USING clause. Also, it seems helpful to provide the exact text of a suggested USING clause, so users can just copy-an

[COMMITTERS] pgsql: Improve error message and hint for ALTER COLUMN TYPE can't-cast

2015-06-12 Thread Tom Lane
Improve error message and hint for ALTER COLUMN TYPE can't-cast failure. We already tried to improve this once, but the "improved" text was rather off-target if you had provided a USING clause. Also, it seems helpful to provide the exact text of a suggested USING clause, so users can just copy-an

[COMMITTERS] pgsql: Fix failure to cover scalar-vs-rowtype cases in exec_stmt_return

2015-06-12 Thread Tom Lane
Fix failure to cover scalar-vs-rowtype cases in exec_stmt_return(). In commit 9e3ad1aac52454569393a947c06be0d301749362 I modified plpgsql to use exec_stmt_return's simple-variables fast path in more cases. However, I overlooked that there are really two different return conventions in use here, de

[COMMITTERS] pgsql: Fix "path" infrastructure bug affecting jsonb_set()

2015-06-12 Thread Andrew Dunstan
Fix "path" infrastructure bug affecting jsonb_set() jsonb_set() and other clients of the setPathArray() utility function could get spurious results when an array integer subscript is provided that is not within the range of int. To fix, ensure that the value returned by strtol() within setPathArr

[COMMITTERS] pgsql: release notes: add two optimizer items

2015-06-12 Thread Bruce Momjian
release notes: add two optimizer items Report by Tom Lane Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/89fe9bfc4ed3b5dc8e02119cc1fd39c975ffdea0 Modified Files -- doc/src/sgml/release-9.5.sgml | 15 +++ 1 file changed, 15 insertions(+)

[COMMITTERS] pgsql: release notes: split apart hash items

2015-06-12 Thread Bruce Momjian
release notes: split apart hash items Report by Tom Lane, Robert Haas Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/8bf51ad0cc26e80cbd082c111f45428db7a2f73b Modified Files -- doc/src/sgml/release-9.5.sgml |9 +++-- 1 file changed, 7 insertions(

[COMMITTERS] pgsql: release notes: reorder sort performance authors

2015-06-12 Thread Bruce Momjian
release notes: reorder sort performance authors Report by Peter Geoghegan Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/51b47c5c095c53be4cda81e322b428167c81c6f2 Modified Files -- doc/src/sgml/release-9.5.sgml |4 ++-- 1 file changed, 2 insertions(+

[COMMITTERS] pgsql: release notes: reorder hash performance authors, again

2015-06-12 Thread Bruce Momjian
release notes: reorder hash performance authors, again Report by Robert Haas Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/644ac3e678f43402da3fbcbd6aa8e6c5915ad9c0 Modified Files -- doc/src/sgml/release-9.5.sgml |2 +- 1 file changed, 1 insertion(+

[COMMITTERS] pgsql: release notes: fixes from Fujii Masao

2015-06-12 Thread Bruce Momjian
release notes: fixes from Fujii Masao Report by Fujii Masao Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/230ff9383c63ebfef11bfd6ba89aed7329b96c7e Modified Files -- doc/src/sgml/release-9.5.sgml | 13 - 1 file changed, 8 insertions(+), 5

[COMMITTERS] pgsql: release notes: add Petr Jelinek to JSON function item

2015-06-12 Thread Bruce Momjian
release notes: add Petr Jelinek to JSON function item Report by Petr Jelinek Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/29d80d5fa8c61e635e5be4c0be859438e4209117 Modified Files -- doc/src/sgml/release-9.5.sgml |2 +- 1 file changed, 1 insertion(+

Re: [COMMITTERS] pgsql: Fix intoasc() in Informix compat lib. This function used to be a

2015-06-12 Thread Michael Paquier
On Fri, Jun 12, 2015 at 10:05 PM, Michael Meskes wrote: > Fix intoasc() in Informix compat lib. This function used to be a noop. Shouldn't this commit be cherry-picked on back-branches? -- Michael -- Sent via pgsql-committers mailing list ([email protected]) To make changes to y

Re: [COMMITTERS] pgsql: Fixed some memory leaks in ECPG.

2015-06-12 Thread Michael Paquier
On Fri, Jun 12, 2015 at 10:05 PM, Michael Meskes wrote: > Fixed some memory leaks in ECPG. > > Patch by Michael Paquier Shouldn't this commit be cherry-picked on back-branches? -- Michael -- Sent via pgsql-committers mailing list ([email protected]) To make changes to your subsc