Re: [COMMITTERS] pgsql: arrays: tighten checks for multi-dimensional input

2014-02-04 Thread Jeff Davis
On Sat, 2014-02-01 at 15:49 +, Bruce Momjian wrote: > arrays: tighten checks for multi-dimensional input > > Previously an input array string that started with a single-element > array dimension would then later accept a multi-dimensional segment. > > BACKWARD INCOMPATIBILITY -select cardin

Re: [COMMITTERS] pgsql: Introduce replication slots.

2014-02-04 Thread Jeff Davis
Also, in 25.2.6: "or by storing the segments in an archive using restore_command". I think you meant "archive_command", right? Jeff Davis -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailp

Re: [COMMITTERS] pgsql: arrays: tighten checks for multi-dimensional input

2014-02-04 Thread Bruce Momjian
On Tue, Feb 4, 2014 at 11:21:24AM -0800, Jeff Davis wrote: > On Sat, 2014-02-01 at 15:49 +, Bruce Momjian wrote: > > arrays: tighten checks for multi-dimensional input > > > > Previously an input array string that started with a single-element > > array dimension would then later accept a mu

[COMMITTERS] pgsql: PL/Perl: Fix compiler warning

2014-02-04 Thread Peter Eisentraut
PL/Perl: Fix compiler warning The code was assigning a (Datum) 0 to a void pointer. That creates a warning from clang 3.4. It was probably a thinko to begin with. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/4e182361804f8688cef953c998e24134e606aea4 Modified Fil