[COMMITTERS] pgsql: Fix broken variable declaration

2016-03-30 Thread Alvaro Herrera
Fix broken variable declaration Author: Konstantin Knizhnik Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/3501f71c21e31b275b7816551b06a666d9c0c9c9 Modified Files -- src/backend/replication/logical/decode.c | 2 +- 1 file changed, 1 insertion(+), 1 delet

[COMMITTERS] pgsql: Fix broken variable declaration

2016-03-30 Thread Alvaro Herrera
Fix broken variable declaration Author: Konstantin Knizhnik Branch -- REL9_5_STABLE Details --- http://git.postgresql.org/pg/commitdiff/c6d2fa1ab089110faee2810ef0fda1bccd4f1f6a Modified Files -- src/backend/replication/logical/decode.c | 2 +- 1 file changed, 1 insertion(+),

[COMMITTERS] pgsql: Blind attempt at fixing Win32 issue on 24c5f1a103c

2016-03-30 Thread Alvaro Herrera
Blind attempt at fixing Win32 issue on 24c5f1a103c As best as I can tell, MyReplicationSlot needs to be PGDLLIMPORT in order for the new test_slot_timelines test module to compile. Per buildfarm Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/3dd0792ae014c9ceb2c2ade

[COMMITTERS] pgsql: Use proper format specifier %X/%X for LSN.

2016-03-30 Thread Fujii Masao
Use proper format specifier %X/%X for LSN. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/cee31f5fee950fed4159a4e093dab60b70ef215a Modified Files -- src/backend/replication/syncrep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- Sent via pgs

[COMMITTERS] pgsql: I forgot the alternate expected file in previous commit

2016-03-30 Thread Alvaro Herrera
I forgot the alternate expected file in previous commit Without this, the test_slot_timelines modules fails "make installcheck" because the required feature is not enabled in a stock server. Per buildfarm Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/3a3b309041b0f

Re: [COMMITTERS] pgsql: Enable logical slots to follow timeline switches

2016-03-30 Thread Alvaro Herrera
Tom Lane wrote: > Alvaro Herrera writes: > > Enable logical slots to follow timeline switches > > Buildfarm doesn't like this one bit :-( Argh, forgot the alternate expected file when the needed feature is disabled. Will fix. -- Álvaro Herrerahttp://www.2ndQuadrant.com/ Postgr

Re: [COMMITTERS] pgsql: Enable logical slots to follow timeline switches

2016-03-30 Thread Tom Lane
Alvaro Herrera writes: > Enable logical slots to follow timeline switches Buildfarm doesn't like this one bit :-( regards, tom lane -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.o

[COMMITTERS] pgsql: Enable logical slots to follow timeline switches

2016-03-30 Thread Alvaro Herrera
Enable logical slots to follow timeline switches When decoding from a logical slot, it's necessary for xlog reading to be able to read xlog from historical (i.e. not current) timelines; otherwise, decoding fails after failover, because the archives are in the historical timeline. This is required

[COMMITTERS] pgsql: XLogReader general code cleanup

2016-03-30 Thread Alvaro Herrera
XLogReader general code cleanup Some minor tweaks and comment additions, for cleanliness sake and to avoid having the upcoming timeline-following patch be polluted with unrelated cleanup. Extracted from a larger patch by Craig Ringer, reviewed by Andres Freund, with some additions by myself. Bra

Re: [COMMITTERS] pgsql: Improve internationalization of messages involving type names

2016-03-30 Thread Alvaro Herrera
Tom Lane wrote: > Alvaro Herrera writes: > > Also, change them all to use the same quoting convention, namely that > > the function name is not to be quoted but the type name is. (I'm not > > quite sure why this is so, but it's the clear majority.) > > Actually, I think the general convention is

[COMMITTERS] pgsql: Improve portability of I/O behavior for the geometric types.

2016-03-30 Thread Tom Lane
Improve portability of I/O behavior for the geometric types. Formerly, the geometric I/O routines such as box_in and point_out relied directly on strtod() and sprintf() for conversion of the float8 component values of their data types. However, the behavior of those functions is pretty platform-d

[COMMITTERS] pgsql: Suppress uninitialized-variable warnings.

2016-03-30 Thread Tom Lane
Suppress uninitialized-variable warnings. My compiler doesn't like the lack of initialization of "flag", and I think it's right: if there were zero keys we'd have an undefined result. The AND of zero items is TRUE, so initialize to TRUE. Branch -- master Details --- http://git.postgresq

[COMMITTERS] pgsql: Bump catalog version, forget in acdf2a8b372aec1da09370fca77ff7dc

2016-03-30 Thread Teodor Sigaev
Bump catalog version, forget in acdf2a8b372aec1da09370fca77ff7dccac7646d Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/2d02a856e8331329121ac2fa2c0b5dab0d106ca0 Modified Files -- src/include/catalog/catversion.h | 2 +- 1 file changed, 1 insertion(+), 1 d

[COMMITTERS] pgsql: Introduce SP-GiST operator class over box.

2016-03-30 Thread Teodor Sigaev
Introduce SP-GiST operator class over box. Patch implements quad-tree over boxes, naive approach of 2D quad tree will not work for any non-point objects because splitting space on node is not efficient. The idea of pathc is treating 2D boxes as 4D points, so, object will not overlap (in 4D space).

[COMMITTERS] pgsql: Use traversalValue in SP-GiST range opclass.

2016-03-30 Thread Teodor Sigaev
Use traversalValue in SP-GiST range opclass. Author: Alexander Lebedev Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/87545f541278ffde4fa1ccf396affbc4e9d59a23 Modified Files -- src/backend/utils/adt/rangetypes_spgist.c | 34 +++--

[COMMITTERS] pgsql: Introduce traversalValue for SP-GiST scan

2016-03-30 Thread Teodor Sigaev
Introduce traversalValue for SP-GiST scan During scan sometimes it would be very helpful to know some information about parent node or all ancestor nodes. Right now reconstructedValue could be used but it's not a right usage of it (range opclass uses that). traversalValue is arbitrary piece

[COMMITTERS] pgsql: Tag refs/tags/REL9_3_12 was created

2016-03-30 Thread pgsql
Tag refs/tags/REL9_3_12 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL9_4_7 was created

2016-03-30 Thread pgsql
Tag refs/tags/REL9_4_7 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL9_2_16 was created

2016-03-30 Thread pgsql
Tag refs/tags/REL9_2_16 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL9_1_21 was created

2016-03-30 Thread pgsql
Tag refs/tags/REL9_1_21 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Tag refs/tags/REL9_5_2 was created

2016-03-30 Thread pgsql
Tag refs/tags/REL9_5_2 was created. -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-committers

[COMMITTERS] pgsql: Add missing gss option to msvc config template

2016-03-30 Thread Magnus Hagander
Add missing gss option to msvc config template Michael Paquier Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/3063e7a84026ced2aadd2262f75eebbe6240f85b Modified Files -- src/tools/msvc/config_default.pl | 1 + 1 file changed, 1 insertion(+) -- Sent via