[COMMITTERS] pgsql: Make format() error messages consistent again

2016-08-08 Thread Peter Eisentraut
Make format() error messages consistent again 07d25a964 changed only one occurrence. Change the other one as well. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/8a56d4e361d4566ce5d6b55f25c3f23aa44f4741 Modified Files -- src/backend/utils/adt/varlena.c

[COMMITTERS] pgsql: doc: Update benchmark results

2016-08-08 Thread Peter Eisentraut
doc: Update benchmark results From: Alexander Law Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/a1f8b6bd14adb724365d91dcc58079ac3a2293e7 Modified Files -- doc/src/sgml/pgcrypto.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent via p

[COMMITTERS] pgsql: Translation updates

2016-08-08 Thread Peter Eisentraut
Translation updates Source-Git-URL: git://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: f1a1631efd7a51f9b1122f22cf688a3124bf1342 Branch -- REL9_5_STABLE Details --- http://git.postgresql.org/pg/commitdiff/4da812fa8adb22874a937f1b000253fecf526cb0 Modified Files -

[COMMITTERS] pgsql: Translation updates

2016-08-08 Thread Peter Eisentraut
Translation updates Source-Git-URL: git://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: 940819d75443c03de7554441c3b1e2bc42f76c8f Branch -- REL9_2_STABLE Details --- http://git.postgresql.org/pg/commitdiff/e990c738b4f96befb43daa11c7d352a8d68d127d Modified Files -

[COMMITTERS] pgsql: Translation updates

2016-08-08 Thread Peter Eisentraut
Translation updates Source-Git-URL: git://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: c111dd35c13389ba0ce762c550a05b35289d1a41 Branch -- REL9_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/39d1a7b5a5ddf3099615b675908f01e71a4cf385 Modified Files -

[COMMITTERS] pgsql: Translation updates

2016-08-08 Thread Peter Eisentraut
Translation updates Source-Git-URL: git://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: cda21c1d7b160b303dc21dfe9d4169f2c8064c60 Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/34927b2920a865559be743836c1aa60a3621c133 Modified Files

[COMMITTERS] pgsql: Translation updates

2016-08-08 Thread Peter Eisentraut
Translation updates Source-Git-URL: git://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: 27a0ac4549d67fb3e07f19d15cdad9f8695b7e7c Branch -- REL9_3_STABLE Details --- http://git.postgresql.org/pg/commitdiff/a35c2d902cc28967e424cdbf832ecec3f904843b Modified Files -

[COMMITTERS] pgsql: Translation updates

2016-08-08 Thread Peter Eisentraut
Translation updates Source-Git-URL: git://git.postgresql.org/git/pgtranslation/messages.git Source-Git-Hash: bd56d09b3b4cc9f2b6def7e64b3a8842460c1bf0 Branch -- REL9_1_STABLE Details --- http://git.postgresql.org/pg/commitdiff/5b1da944c3026bb253f0700a758b5db3db06a223 Modified Files -

[COMMITTERS] pgsql: Fix several one-byte buffer over-reads in to_number

2016-08-08 Thread Peter Eisentraut
Fix several one-byte buffer over-reads in to_number Several places in NUM_numpart_from_char(), which is called from the SQL function to_number(text, text), could accidentally read one byte past the end of the input buffer (which comes from the input text datum and is not null-terminated). 1. One

[COMMITTERS] pgsql: Fix several one-byte buffer over-reads in to_number

2016-08-08 Thread Peter Eisentraut
Fix several one-byte buffer over-reads in to_number Several places in NUM_numpart_from_char(), which is called from the SQL function to_number(text, text), could accidentally read one byte past the end of the input buffer (which comes from the input text datum and is not null-terminated). 1. One

[COMMITTERS] pgsql: Fix several one-byte buffer over-reads in to_number

2016-08-08 Thread Peter Eisentraut
Fix several one-byte buffer over-reads in to_number Several places in NUM_numpart_from_char(), which is called from the SQL function to_number(text, text), could accidentally read one byte past the end of the input buffer (which comes from the input text datum and is not null-terminated). 1. One

[COMMITTERS] pgsql: Fix several one-byte buffer over-reads in to_number

2016-08-08 Thread Peter Eisentraut
Fix several one-byte buffer over-reads in to_number Several places in NUM_numpart_from_char(), which is called from the SQL function to_number(text, text), could accidentally read one byte past the end of the input buffer (which comes from the input text datum and is not null-terminated). 1. One

[COMMITTERS] pgsql: Fix several one-byte buffer over-reads in to_number

2016-08-08 Thread Peter Eisentraut
Fix several one-byte buffer over-reads in to_number Several places in NUM_numpart_from_char(), which is called from the SQL function to_number(text, text), could accidentally read one byte past the end of the input buffer (which comes from the input text datum and is not null-terminated). 1. One

[COMMITTERS] pgsql: Fix several one-byte buffer over-reads in to_number

2016-08-08 Thread Peter Eisentraut
Fix several one-byte buffer over-reads in to_number Several places in NUM_numpart_from_char(), which is called from the SQL function to_number(text, text), could accidentally read one byte past the end of the input buffer (which comes from the input text datum and is not null-terminated). 1. One

[COMMITTERS] pgsql: Update 9.6 release notes through today.

2016-08-08 Thread Tom Lane
Update 9.6 release notes through today. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/de4b3ea16d8b053e95eb9d862075b0de123e45b9 Modified Files -- doc/src/sgml/release-9.6.sgml | 30 +- 1 file changed, 29 insertions(+), 1 deleti

[COMMITTERS] pgsql: doc: update list of pg_trgm authors

2016-08-08 Thread Bruce Momjian
doc: update list of pg_trgm authors Author: Oleg Bartunov Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/cfdadf5f930c4e613e3a13ab09673856aa59351e Modified Files -- doc/src/sgml/pgtrgm.sgml | 3 +++ 1 file changed, 3 insertions(+) -- Sent via pgsql-co

Re: [COMMITTERS] pgsql: Fix several one-byte buffer over-reads in to_number

2016-08-08 Thread Piotr Stefaniak
On 2016-08-08 17:18, Peter Eisentraut wrote: > Fix several one-byte buffer over-reads in to_number I've been meaning to update my patch like this, but didn't want to bother you before trying to find more issues with formatting.c (still haven't found the time for that, sadly): @@ -4188,13 +4188,

[COMMITTERS] pgsql: Stamp 9.6beta4.

2016-08-08 Thread Tom Lane
Stamp 9.6beta4. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/67c08c0d704a5f828492642bf9d133cbb2af3661 Modified Files -- configure | 18 +- configure.in | 2 +- doc/bug.template | 2 +- sr

[COMMITTERS] pgsql: Stamp 9.5.4.

2016-08-08 Thread Tom Lane
Stamp 9.5.4. Branch -- REL9_5_STABLE Details --- http://git.postgresql.org/pg/commitdiff/eb4dfa239e6f54fef5c486caf4b58a9805c19572 Modified Files -- configure| 18 +- configure.in | 2 +- doc/bug.template

[COMMITTERS] pgsql: Stamp 9.4.9.

2016-08-08 Thread Tom Lane
Stamp 9.4.9. Branch -- REL9_4_STABLE Details --- http://git.postgresql.org/pg/commitdiff/860f8fb1aa4ee01259bac8fa4e1c4da9570ac1b7 Modified Files -- configure| 18 +- configure.in | 2 +- doc/bug.template

[COMMITTERS] pgsql: Stamp 9.3.14.

2016-08-08 Thread Tom Lane
Stamp 9.3.14. Branch -- REL9_3_STABLE Details --- http://git.postgresql.org/pg/commitdiff/757f567ec8d6d4767e74cf987a5cc63e63f1c9dc Modified Files -- configure| 18 +- configure.in | 2 +- doc/bug.template

[COMMITTERS] pgsql: Stamp 9.2.18.

2016-08-08 Thread Tom Lane
Stamp 9.2.18. Branch -- REL9_2_STABLE Details --- http://git.postgresql.org/pg/commitdiff/01de6f3fd80721583baf2378ee8fe2b06a448ed0 Modified Files -- configure| 18 +- configure.in | 2 +- doc/bug.template

[COMMITTERS] pgsql: Stamp 9.1.23.

2016-08-08 Thread Tom Lane
Stamp 9.1.23. Branch -- REL9_1_STABLE Details --- http://git.postgresql.org/pg/commitdiff/cb5b88af7dc7529dcdfd8c0ff71c5372877b7f19 Modified Files -- configure| 18 +- configure.in | 2 +- doc/bug.template