Tom Lane [Wed, 4 Nov 2015 17:03:30 +0000 (12:03 -0500)]     Add regression tests for remote execution of extension operators/functions.
 
 Rather than relying on other extensions to be available for installation,
 let's just add some test objects to the postgres_fdw extension itself
 within the regression script.
 
 
    Tom Lane [Tue, 3 Nov 2015 23:42:02 +0000 (18:42 -0500)]     Allow postgres_fdw to ship extension funcs/operators for remote execution.
 
 The user can whitelist specified extension(s) in the foreign server's
 options, whereupon we will treat immutable functions and operators of those
 extensions as candidates to be sent for remote execution.
 
 Whitelisting an extension in this way basically promises that the extension
 exists on the remote server and behaves compatibly with the local instance.
 We have no way to prove that formally, so we have to rely on the user to
 get it right.  But this seems like something that people can usually get
 right in practice.
 
 We might in future allow functions and operators to be whitelisted
 individually, but extension granularity is a very convenient special case,
 so it got done first.
 
 The patch as-committed lacks any regression tests, which is unfortunate,
 but introducing dependencies on other extensions for testing purposes
 would break "make installcheck" scenarios, which is worse.  I have some
 ideas about klugy ways around that, but it seems like material for a
 separate patch.  For the moment, leave the problem open.
 
 Paul Ramsey, hacked up a bit more by me
 
 
    Robert Haas [Tue, 3 Nov 2015 19:11:49 +0000 (14:11 -0500)]     Improve comments about abbreviation abort.
 
 Peter Geoghegan
 
 
    Robert Haas [Tue, 3 Nov 2015 17:46:06 +0000 (12:46 -0500)]     postgres_fdw: Add ORDER BY to some remote SQL queries.
 
 If the join problem's entire ORDER BY clause can be pushed to the
 remote server, consider a path that adds this ORDER BY clause.  If
 use_remote_estimate is on, we cost this path using an additional
 remote EXPLAIN.  If not, we just estimate that the path costs 20%
 more, which is intended to be large enough that we won't request a
 remote sort when it's not helpful, but small enough that we'll have
 the remote side do the sort when in doubt.  In some cases, the remote
 sort might actually be free, because the remote query plan might
 happen to produce output that is ordered the way we need, but without
 remote estimates we have no way of knowing that.
 
 It might also be useful to request sorted output from the remote side
 if it enables an efficient merge join, but this patch doesn't attempt
 to handle that case.
 
 Ashutosh Bapat with revisions by me.  Also reviewed by Fabrízio de Royes
 Mello and Jeevan Chalke.
 
 
    Tom Lane [Tue, 3 Nov 2015 16:57:56 +0000 (11:57 -0500)]     Remove obsolete advice about doubling backslashes in regex escapes.
 
 Standard-conforming literals have been the default for long enough that
 it no longer seems necessary to go out of our way to tell people to write
 regex escapes illegibly.
 
 
    Tom Lane [Tue, 3 Nov 2015 16:49:21 +0000 (11:49 -0500)]     Code + docs review for unicode linestyle patch.
  Fix some brain fade in commit 
a2dabf0e1dda93c8: erroneous variable names
 in docs, rearrangements that made sentences less clear not more so,
 undocumented and poorly-chosen-anyway API behaviors of subroutines,
 bad grammar in error messages, copy-and-paste faults. 
 Albe Laurenz and Tom Lane  
  Robert Haas [Tue, 3 Nov 2015 14:12:52 +0000 (09:12 -0500)]     shm_mq: Third attempt at fixing nowait behavior in shm_mq_receive.
  Commit 
a1480ec1d3bacb9acb08ec09f22bc25bc033115b purported to fix the
 problems with commit 
b2ccb5f4e6c81305386edb34daf7d1d1e1ee112a, but it
 didn't completely fix them.  The problem is that the checks were
 performed in the wrong order, leading to a race condition.  If the
 sender attached, sent a message, and detached after the receiver
 called shm_mq_get_sender and before the receiver called
 shm_mq_counterparty_gone, we'd incorrectly return SHM_MQ_DETACHED
 before all messages were read.  Repair by reversing the order of
 operations, and add a long comment explaining why this new logic is
 (hopefully) correct.  
  Robert Haas [Tue, 3 Nov 2015 13:32:22 +0000 (08:32 -0500)]     Correct tiny inaccuracy in strxfrm cache comment.
 
 Peter Geoghegan
 
 
    Tom Lane [Tue, 3 Nov 2015 00:37:51 +0000 (19:37 -0500)]     Remove some more dead Alpha-specific code.
 
 
    Robert Haas [Mon, 2 Nov 2015 23:11:29 +0000 (18:11 -0500)]     Fix problems with ParamListInfo serialization mechanism.
  Commit 
d1b7c1ffe72e86932b5395f29e006c3f503bc53d introduced a mechanism
 for serializing a ParamListInfo structure to be passed to a parallel
 worker.  However, this mechanism failed to handle external expanded
 values, as pointed out by Noah Misch.  Repair. 
 Moreover, plpgsql_param_fetch requires adjustment because the
 serialization mechanism needs it to skip evaluating unused parameters
 just as we would do when it is called from copyParamList, but params
 == estate->paramLI in that case.  To fix, make the bms_is_member test
 in that function unconditional. 
 Finally, have setup_param_list set a new ParamListInfo field,
 paramMask, to the parameters actually used in the expression, so that
 we don't try to fetch those that are not needed when serializing a
 parameter list.  This isn't necessary for correctness, but it makes
 the performance of the parallel executor code comparable to what we
 do for cases involving cursors. 
 Design suggestions and extensive review by Noah Misch.  Patch by me.  
  Kevin Grittner [Mon, 2 Nov 2015 12:23:10 +0000 (06:23 -0600)]     Add RMV to list of commands taking AE lock.
 
 Backpatch to 9.3, where it was initially omitted.
 
 Craig Ringer, with minor adjustment by Kevin Grittner
 
 
    Kevin Grittner [Sat, 31 Oct 2015 19:43:34 +0000 (14:43 -0500)]     Fix serialization anomalies due to race conditions on INSERT.
 
 On insert the CheckForSerializableConflictIn() test was performed
 before the page(s) which were going to be modified had been locked
 (with an exclusive buffer content lock).  If another process
 acquired a relation SIReadLock on the heap and scanned to a page on
 which an insert was going to occur before the page was so locked,
 a rw-conflict would be missed, which could allow a serialization
 anomaly to be missed.  The window between the check and the page
 lock was small, so the bug was generally not noticed unless there
 was high concurrency with multiple processes inserting into the
 same table.
 
 This was reported by Peter Bailis as bug #11732, by Sean Chittenden
 as bug #13667, and by others.
 
 The race condition was eliminated in heap_insert() by moving the
 check down below the acquisition of the buffer lock, which had been
 the very next statement.  Because of the loop locking and unlocking
 multiple buffers in heap_multi_insert() a check was added after all
 inserts were completed.  The check before the start of the inserts
 was left because it might avoid a large amount of work to detect a
 serialization anomaly before performing the all of the inserts and
 the related WAL logging.
 
 While investigating this bug, other SSI bugs which were even harder
 to hit in practice were noticed and fixed, an unnecessary check
 (covered by another check, so redundant) was removed from
 heap_update(), and comments were improved.
 
 Back-patch to all supported branches.
 
 Kevin Grittner and Thomas Munro
 
 
    Tom Lane [Fri, 30 Oct 2015 23:14:19 +0000 (19:14 -0400)]     Implement lookbehind constraints in our regular-expression engine.
 
 A lookbehind constraint is like a lookahead constraint in that it consumes
 no text; but it checks for existence (or nonexistence) of a match *ending*
 at the current point in the string, rather than one *starting* at the
 current point.  This is a long-requested feature since it exists in many
 other regex libraries, but Henry Spencer had never got around to
 implementing it in the code we use.
 
 Just making it work is actually pretty trivial; but naive copying of the
 logic for lookahead constraints leads to code that often spends O(N^2) time
 to scan an N-character string, because we have to run the match engine
 from string start to the current probe point each time the constraint is
 checked.  In typical use-cases a lookbehind constraint will be written at
 the start of the regex and hence will need to be checked at every character
 --- so O(N^2) work overall.  To fix that, I introduced a third copy of the
 core DFA matching loop, paralleling the existing longest() and shortest()
 loops.  This version, matchuntil(), can suspend and resume matching given
 a couple of pointers' worth of storage space.  So we need only run it
 across the string once, stopping at each interesting probe point and then
 resuming to advance to the next one.
 
 I also put in an optimization that simplifies one-character lookahead and
 lookbehind constraints, such as "(?=x)" or "(?<!\w)", into AHEAD and BEHIND
 constraints, which already existed in the engine.  This avoids the overhead
 of the LACON machinery entirely for these rather common cases.
 
 The net result is that lookbehind constraints run a factor of three or so
 slower than Perl's for multi-character constraints, but faster than Perl's
 for one-character constraints ... and they work fine for variable-length
 constraints, which Perl gives up on entirely.  So that's not bad from a
 competitive perspective, and there's room for further optimization if
 anyone cares.  (In reality, raw scan rate across a large input string is
 probably not that big a deal for Postgres usage anyway; so I'm happy if
 it's linear.)
 
 
    Robert Haas [Fri, 30 Oct 2015 11:18:55 +0000 (12:18 +0100)]     doc: security_barrier option is a Boolean, not a string.
  Mistake introduced by commit 
5bd91e3a835b5d5499fee5f49fc7c0c776fe63dd. 
 Hari Babu  
  Robert Haas [Fri, 30 Oct 2015 09:43:00 +0000 (10:43 +0100)]     Update parallel executor support to reuse the same DSM.
  Commit 
b0b0d84b3d663a148022e900ebfc164284a95f55 purported to make it
 possible to relaunch workers using the same parallel context, but it had
 an unpleasant race condition: we might reinitialize after the workers
 have sent their last control message but before they have dettached the
 DSM, leaving to crashes.  Repair by introducing a new ParallelContext
 operation, ReinitializeParallelDSM. 
 Adjust execParallel.c to use this new support, so that we can rescan a
 Gather node by relaunching workers but without needing to recreate the
 DSM. 
 Amit Kapila, with some adjustments by me.  Extracted from latest parallel
 sequential scan patch.  
  Robert Haas [Fri, 30 Oct 2015 09:35:33 +0000 (10:35 +0100)]     Fix typo in bgworker.c
 
 
    Tom Lane [Thu, 29 Oct 2015 22:54:35 +0000 (18:54 -0400)]     Docs: add example clarifying use of nested JSON containment.
 
 Show how this can be used in practice to make queries simpler and more
 flexible.  Also, draw an explicit contrast to the existence operator,
 which doesn't work that way.
 
 Peter Geoghegan and Tom Lane
 
 
    Peter Eisentraut [Thu, 29 Oct 2015 20:40:14 +0000 (16:40 -0400)]     Remove some remains from Alpha support removal
 
 
    Peter Eisentraut [Thu, 29 Oct 2015 00:23:53 +0000 (20:23 -0400)]     Message style improvements
 
 Message style, plurals, quoting, spelling, consistency with similar
 messages
 
 
    Robert Haas [Wed, 28 Oct 2015 11:19:14 +0000 (12:19 +0100)]     Add missing serial comma, for consistency.
 
 Amit Langote, per Etsuro Fujita
 
 
    Robert Haas [Wed, 28 Oct 2015 10:44:47 +0000 (11:44 +0100)]     Fix incorrect message in ATWrongRelkindError.
  Mistake introduced by commit 
3bf3ab8c563699138be02f9dc305b7b77a724307. 
 Etsuro Fujita  
  Alvaro Herrera [Wed, 28 Oct 2015 02:02:04 +0000 (23:02 -0300)]     Fix secondary expected output for commit_ts test
 
 Per red wall in buildfarm
 
 
    Robert Haas [Tue, 27 Oct 2015 23:27:58 +0000 (00:27 +0100)]     Make Gather node projection-capable.
 
 The original Gather code failed to mark a Gather node as not able to
 do projection, but it couldn't, even though it did call initialize its
 projection info via ExecAssignProjectionInfo.  There doesn't seem to
 be any good reason for this node not to have projection capability,
 so clean things up so that it does.  Without this, plans using Gather
 nodes might need to carry extra Result nodes to do projection.
 
 
    Alvaro Herrera [Tue, 27 Oct 2015 22:03:15 +0000 (19:03 -0300)]     Document BRIN's inclusion opclass framework
  Backpatch to 9.5 -- this should have been part of 
b0b7be61337, but we
 didn't have 
38b03caebc5de either at the time. 
 Author: Emre Hasegeli
 Revised by: Ian Barwick
 Discussion:
  http://www.postgresql.org/message-id/CAE2gYzyB39Q9up_-TO6FKhH44pcAM1x6n_Cuj15qKoLoFihUVg@mail.gmail.com
  http://www.postgresql.org/message-id/
562DA711.
3020305@2ndquadrant.com  
  Alvaro Herrera [Tue, 27 Oct 2015 21:17:55 +0000 (18:17 -0300)]     Fix BRIN free space computations
  A bug in the original free space computation made it possible to
 return a page which wasn't actually able to fit the item.  Since the
 insertion code isn't prepared to deal with PageAddItem failing, a PANIC
 resulted ("failed to add BRIN tuple [to new page]").  Add a macro to
 encapsulate the correct computation, and use it in
 brin_getinsertbuffer's callers before calling that routine, to raise an
 early error. 
 I became aware of the possiblity of a problem in this area while working
 on 
ccc4c074994d734.  There's no archived discussion about it, but it's
 easy to reproduce a problem in the unpatched code with something like 
 CREATE TABLE t (a text);
 CREATE INDEX ti ON t USING brin (a) WITH (pages_per_range=1); 
 for length in `seq 8000 8196`
 do
	psql -f - <<EOF
 TRUNCATE TABLE t;
 INSERT INTO t VALUES ('z'), (repeat('a', $length));
 EOF
 done 
 Backpatch to 9.5, where BRIN was introduced.  
  Alvaro Herrera [Tue, 27 Oct 2015 18:06:50 +0000 (15:06 -0300)]     Cleanup commit timestamp module activaction, again
  Further tweak commit_ts.c so that on a standby the state is completely
 consistent with what that in the master, rather than behaving
 differently in the cases that the settings differ.  Now in standby and
 master the module should always be active or inactive in lockstep. 
 Author: Petr Jelínek, with some further tweaks by Álvaro Herrera. 
 Backpatch to 9.5, where commit timestamps were introduced. 
 Discussion: http://www.postgresql.org/message-id/
5622BF9D.
2010409@2ndquadrant.com  
  Alvaro Herrera [Tue, 27 Oct 2015 16:20:40 +0000 (13:20 -0300)]     Measure string lengths only once
  Bernd Helmle complained that CreateReplicationSlot() was assigning the
 same value to the same variable twice, so we could remove one of them.
 Code inspection reveals that we can actually remove both assignments:
 according to the author the assignment was there for beauty of the
 strlen line only, and another possible fix to that is to put the strlen
 in its own line, so do that. 
 To be consistent within the file, refactor all duplicated strlen()
 calls, which is what we do elsewhere in the backend anyway.  In
 basebackup.c, snprintf already returns the right length; no need for
 strlen afterwards. 
 Backpatch to 9.4, where replication slots were introduced, to keep code
 identical.  Some of this is older, but the patch doesn't apply cleanly
 and it's only of cosmetic value anyway. 
 Discussion: http://www.postgresql.org/message-id/
BE2FD71DEA35A2287EA5F018@eje.credativ.lan  
  Robert Haas [Fri, 23 Oct 2015 02:01:11 +0000 (22:01 -0400)]     shm_mq: Repair breakage from previous commit.
 
 If the counterparty writes some data into the queue and then detaches,
 it's wrong to return SHM_MQ_DETACHED right away.  If we do that, we
 fail to read whatever was written.
 
 
    Robert Haas [Thu, 22 Oct 2015 21:00:53 +0000 (17:00 -0400)]     Add two missing cases to ATWrongRelkindError.
 
 This way, we produce a better error message if someone tries to do
 something like ALTER INDEX .. ALTER COLUMN .. SET STORAGE.
 
 Amit Langote
 
 
    Robert Haas [Thu, 22 Oct 2015 20:33:30 +0000 (16:33 -0400)]     shm_mq: Fix failure to notice a dead counterparty when nowait is used.
 
 The shm_mq mechanism was intended to optionally notice when the process
 on the other end of the queue fails to attach to the queue.  It does
 this by allowing the user to pass a BackgroundWorkerHandle; if the
 background worker in question is launched and dies without attaching
 to the queue, then we know it never will.  This logic works OK in
 blocking mode, but when called with nowait = true we fail to notice
 that this has happened due to an asymmetry in the logic.  Repair.
 
 Reported off-list by Rushabh Lathia.  Patch by me.
 
 
    Robert Haas [Thu, 22 Oct 2015 18:51:49 +0000 (14:51 -0400)]     Fix typos in comments.
 
 CharSyam
 
 
    Peter Eisentraut [Thu, 22 Oct 2015 17:59:58 +0000 (13:59 -0400)]     doc: Add advice on updating checkpoint_segments to max_wal_size
 
 with suggestion from Michael Paquier
 
 
    Tom Lane [Thu, 22 Oct 2015 16:33:51 +0000 (09:33 -0700)]     Remove redundant CREATEUSER/NOCREATEUSER options in CREATE ROLE et al.
 
 Once upon a time we did not have a separate CREATEROLE privilege, and
 CREATEUSER effectively meant SUPERUSER.  When we invented CREATEROLE
 (in 8.1) we also added SUPERUSER so as to have a less confusing keyword
 for this role property.  However, we left CREATEUSER in place as a
 deprecated synonym for SUPERUSER, because of backwards-compatibility
 concerns.  It's still there and is still confusing people, as for example
 in bug #13694 from Justin Catterson.  9.6 will be ten years or so later,
 which surely ought to be long enough to end the deprecation and just
 remove these old keywords.  Hence, do so.
 
 
    Robert Haas [Thu, 22 Oct 2015 14:49:20 +0000 (10:49 -0400)]     Fix a couple of bugs in recent parallelism-related commits.
  Commit 
816e336f12ecabdc834d4cc31bcf966b2dd323dc added the wrong error
 check to async.c; sending restrictions is restricted to the leader,
 not altogether unsafe. 
 Commit 
3bd909b220930f21d6e15833a17947be749e7fde added ExecShutdownNode
 to traverse the planstate tree and call shutdown functions, but made
 a Gather node, the only node that actually has such a function, abort
 the tree traversal, which is wrong.  
  Robert Haas [Thu, 22 Oct 2015 14:37:24 +0000 (10:37 -0400)]     Add header comments to execParallel.c and nodeGather.c.
 
 Patch by me, per a note from Simon Riggs.  Reviewed by Amit Kapila
 and Amit Langote.
 
 
    Peter Eisentraut [Thu, 22 Oct 2015 02:31:56 +0000 (22:31 -0400)]     doc: Improve markup and fine-tune replication protocol documentation
 
 
    Tom Lane [Tue, 20 Oct 2015 18:06:24 +0000 (11:06 -0700)]     Fix incorrect translation of minus-infinity datetimes for json/jsonb.
  Commit 
bda76c1c8cfb1d11751ba6be88f0242850481733 caused both plus and
 minus infinity to be rendered as "infinity", which is not only wrong
 but inconsistent with the pre-9.4 behavior of to_json().  Fix that by
 duplicating the coding in date_out/timestamp_out/timestamptz_out more
 closely.  Per bug #13687 from Stepan Perlov.  Back-patch to 9.4, like
 the previous commit. 
 In passing, also re-pgindent json.c, since it had gotten a bit messed up by
 recent patches (and I was already annoyed by indentation-related problems
 in back-patching this fix ...)  
  Peter Eisentraut [Tue, 20 Oct 2015 17:33:39 +0000 (13:33 -0400)]     doc: Move documentation of max_wal_size to better position
 
 
    Robert Haas [Tue, 20 Oct 2015 15:11:35 +0000 (11:11 -0400)]     Fix incorrect comment in plannodes.h
 
 Etsuro Fujita
 
 
    Robert Haas [Tue, 20 Oct 2015 14:29:19 +0000 (10:29 -0400)]     Remove duplicate word.
 
 Amit Langote
 
 
    Robert Haas [Tue, 20 Oct 2015 14:27:20 +0000 (10:27 -0400)]     Tab complete CREATE EXTENSION .. VERSION.
 
 Jeff Janes
 
 
    Robert Haas [Tue, 20 Oct 2015 13:56:04 +0000 (09:56 -0400)]     Put back ssl_renegotiation_limit parameter, but only allow 0.
 
 Per a report from Shay Rojansky, Npgsql sends ssl_renegotiation_limit=0
 in the startup packet because it does not support renegotiation; other
 clients which have not attempted to support renegotiation might well
 behave similarly.  The recent removal of this parameter forces them to
 break compatibility with either current PostgreSQL versions, or
 previous ones.  Per discussion, the best solution is to accept the
 parameter but only allow a value of 0.
 
 Shay Rojansky, edited a little by me.
 
 
    Robert Haas [Tue, 20 Oct 2015 13:27:50 +0000 (09:27 -0400)]     Be a bit more rigorous about how we cache strcoll and strxfrm results.
  Commit 
0e57b4d8bd9674adaf5747421b3255b85e385534 contained some clever
 logic that attempted to make sure that we couldn't get confused about
 whether the last thing we cached was a strcoll() result or a strxfrm()
 result, but it wasn't quite clever enough, because we can perform
 further abbreviations after having already performed some comparisons.
 Introduce an explicit flag in the hopes of making this watertight. 
 Peter Geoghegan, reviewed by me.  
  Robert Haas [Tue, 20 Oct 2015 13:15:13 +0000 (09:15 -0400)]     Remove obsolete comment.
 
 Peter Geoghegan
 
 
    Noah Misch [Tue, 20 Oct 2015 04:37:22 +0000 (00:37 -0400)]     Eschew "RESET statement_timeout" in tests.
 
 Instead, use transaction abort.  Given an unlucky bout of latency, the
 timeout would cancel the RESET itself.  Buildfarm members gharial,
 lapwing, mereswine, shearwater, and sungazer witness that.  Back-patch
 to 9.1 (all supported versions).  The query_canceled test still could
 timeout before entering its subtransaction; for whatever reason, that
 has yet to happen on the buildfarm.
 
 
    Tom Lane [Mon, 19 Oct 2015 20:54:53 +0000 (13:54 -0700)]     Fix incorrect handling of lookahead constraints in pg_regprefix().
 
 pg_regprefix was doing nothing with lookahead constraints, which would
 be fine if it were the right kind of nothing, but it isn't: we have to
 terminate our search for a fixed prefix, not just pretend the LACON arc
 isn't there.  Otherwise, if the current state has both a LACON outarc and a
 single plain-color outarc, we'd falsely conclude that the color represents
 an addition to the fixed prefix, and generate an extracted index condition
 that restricts the indexscan too much.  (See added regression test case.)
 
 Terminating the search is conservative: we could traverse the LACON arc
 (thus assuming that the constraint can be satisfied at runtime) and then
 examine the outarcs of the linked-to state.  But that would be a lot more
 work than it seems worth, because writing a LACON followed by a single
 plain character is a pretty silly thing to do.
 
 This makes a difference only in rather contrived cases, but it's a bug,
 so back-patch to all supported branches.
 
 
    Robert Haas [Fri, 16 Oct 2015 21:25:02 +0000 (17:25 -0400)]     Add a C API for parallel heap scans.
 
 Using this API, one backend can set up a ParallelHeapScanDesc to
 which multiple backends can then attach.  Each tuple in the relation
 will be returned to exactly one of the scanning backends.  Only
 forward scans are supported, and rescans must be carefully
 coordinated.
 
 This is not exposed to the planner or executor yet.
 
 The original version of this code was written by me.  Amit Kapila
 reviewed it, tested it, and improved it, including adding support for
 synchronized scans, per review comments from Jeff Davis.  Extensive
 testing of this and related patches was performed by Haribabu Kommi.
 Final cleanup of this patch by me.
 
 
    Robert Haas [Fri, 16 Oct 2015 21:18:05 +0000 (17:18 -0400)]     Allow a parallel context to relaunch workers.
 
 This may allow some callers to avoid the overhead involved in tearing
 down a parallel context and then setting up a new one, which means
 releasing the DSM and then allocating and populating a new one.  I
 suspect we'll want to revise the Gather node to make use of this new
 capability, but even if not it may be useful elsewhere and requires
 very little additional code.
 
 
    Tom Lane [Fri, 16 Oct 2015 19:52:12 +0000 (15:52 -0400)]     Miscellaneous cleanup of regular-expression compiler.
 
 Revert our previous addition of "all" flags to copyins() and copyouts();
 they're no longer needed, and were never anything but an unsightly hack.
 
 Improve a couple of infelicities in the REG_DEBUG code for dumping
 the NFA data structure, including adding code to count the total
 number of states and arcs.
 
 Add a couple of missed error checks.
 
 Add some more documentation in the README file, and some regression tests
 illustrating cases that exceeded the state-count limit and/or took
 unreasonable amounts of time before this set of patches.
 
 Back-patch to all supported branches.
 
 
    Tom Lane [Fri, 16 Oct 2015 19:36:16 +0000 (15:36 -0400)]     Improve memory-usage accounting in regular-expression compiler.
 
 This code previously counted the number of NFA states it created, and
 complained if a limit was exceeded, so as to prevent bizarre regex patterns
 from consuming unreasonable time or memory.  That's fine as far as it went,
 but the code paid no attention to how many arcs linked those states.  Since
 regexes can be contrived that have O(N) states but will need O(N^2) arcs
 after fixempties() processing, it was still possible to blow out memory,
 and take a long time doing it too.  To fix, modify the bookkeeping to count
 space used by both states and arcs.
 
 I did not bother with including the "color map" in the accounting; it
 can only grow to a few megabytes, which is not a lot in comparison to
 what we're allowing for states+arcs (about 150MB on 64-bit machines
 or half that on 32-bit machines).
 
 Looking at some of the larger real-world regexes captured in the Tcl
 regression test suite suggests that the most that is likely to be needed
 for regexes found in the wild is under 10MB, so I believe that the current
 limit has enough headroom to make it okay to keep it as a hard-wired limit.
 
 In connection with this, redefine REG_ETOOBIG as meaning "regular
 expression is too complex"; the previous wording of "nfa has too many
 states" was already somewhat inapropos because of the error code's use
 for stack depth overrun, and it was not very user-friendly either.
 
 Back-patch to all supported branches.
 
 
    Tom Lane [Fri, 16 Oct 2015 19:11:49 +0000 (15:11 -0400)]     Improve performance of pullback/pushfwd in regular-expression compiler.
 
 The previous coding would create a new intermediate state every time it
 wanted to interchange the ordering of two constraint arcs.  Certain regex
 features such as \Y can generate large numbers of parallel constraint arcs,
 and if we needed to reorder the results of that, we created unreasonable
 numbers of intermediate states.  To improve matters, keep a list of
 already-created intermediate states associated with the state currently
 being considered by the outer loop; we can re-use such states to place all
 the new arcs leading to the same destination or source.
 
 I also took the trouble to redefine push() and pull() to have a less risky
 API: they no longer delete any state or arc that the caller might possibly
 have a pointer to, except for the specifically-passed constraint arc.
 This reduces the risk of re-introducing the same type of error seen in
 the failed patch for CVE-2007-4772.
 
 Back-patch to all supported branches.
 
 
    Tom Lane [Fri, 16 Oct 2015 18:58:10 +0000 (14:58 -0400)]     Improve performance of fixempties() pass in regular-expression compiler.
 
 The previous coding took something like O(N^4) time to fully process a
 chain of N EMPTY arcs.  We can't really do much better than O(N^2) because
 we have to insert about that many arcs, but we can do lots better than
 what's there now.  The win comes partly from using mergeins() to amortize
 de-duplication of arcs across multiple source states, and partly from
 exploiting knowledge of the ordering of arcs for each state to avoid
 looking at arcs we don't need to consider during the scan.  We do have
 to be a bit careful of the possible reordering of arcs introduced by
 the sort-merge coding of the previous commit, but that's not hard to
 deal with.
 
 Back-patch to all supported branches.
 
 
    Tom Lane [Fri, 16 Oct 2015 18:43:17 +0000 (14:43 -0400)]     Fix O(N^2) performance problems in regular-expression compiler.
 
 Change the singly-linked in-arc and out-arc lists to be doubly-linked,
 so that arc deletion is constant time rather than having worst-case time
 proportional to the number of other arcs on the connected states.
 
 Modify the bulk arc transfer operations copyins(), copyouts(), moveins(),
 moveouts() so that they use a sort-and-merge algorithm whenever there's
 more than a small number of arcs to be copied or moved.  The previous
 method is O(N^2) in the number of arcs involved, because it performs
 duplicate checking independently for each copied arc.  The new method may
 change the ordering of existing arcs for the destination state, but nothing
 really cares about that.
 
 Provide another bulk arc copying method mergeins(), which is unused as
 of this commit but is needed for the next one.  It basically is like
 copyins(), but the source arcs might not all come from the same state.
 
 Replace the O(N^2) bubble-sort algorithm used in carcsort() with a qsort()
 call.
 
 These changes greatly improve the performance of regex compilation for
 large or complex regexes, at the cost of extra space for arc storage during
 compilation.  The original tradeoff was probably fine when it was made, but
 now we care more about speed and less about memory consumption.
 
 Back-patch to all supported branches.
 
 
    Tom Lane [Fri, 16 Oct 2015 18:14:40 +0000 (14:14 -0400)]     Fix regular-expression compiler to handle loops of constraint arcs.
 
 It's possible to construct regular expressions that contain loops of
 constraint arcs (that is, ^ $ AHEAD BEHIND or LACON arcs).  There's no use
 in fully traversing such a loop at execution, since you'd just end up in
 the same NFA state without having consumed any input.  Worse, such a loop
 leads to infinite looping in the pullback/pushfwd stage of compilation,
 because we keep pushing or pulling the same constraints around the loop
 in a vain attempt to move them to the pre or post state.  Such looping was
 previously recognized in CVE-2007-4772; but the fix only handled the case
 of trivial single-state loops (that is, a constraint arc leading back to
 its source state) ... and not only that, it was incorrect even for that
 case, because it broke the admittedly-not-very-clearly-stated API contract
 of the pull() and push() subroutines.  The first two regression test cases
 added by this commit exhibit patterns that result in assertion failures
 because of that (though there seem to be no ill effects in non-assert
 builds).  The other new test cases exhibit multi-state constraint loops;
 in an unpatched build they will run until the NFA state-count limit is
 exceeded.
 
 To fix, remove the code added for CVE-2007-4772, and instead create a
 general-purpose constraint-loop-breaking phase of regex compilation that
 executes before we do pullback/pushfwd.  Since we never need to traverse
 a constraint loop fully, we can just break the loop at any chosen spot,
 if we add clone states that can replicate any sequence of arc transitions
 that would've traversed just part of the loop.
 
 Also add some commentary clarifying why we have to have all these
 machinations in the first place.
 
 This class of problems has been known for some time --- we had a report
 from Marc Mamin about two years ago, for example, and there are related
 complaints in the Tcl bug tracker.  I had discussed a fix of this kind
 off-list with Henry Spencer, but didn't get around to doing something
 about it until the issue was rediscovered by Greg Stark recently.
 
 Back-patch to all supported branches.
 
 
    Robert Haas [Fri, 16 Oct 2015 18:20:36 +0000 (14:20 -0400)]     Remove volatile qualifiers from proc.c and procarray.c
  Prior to commit 
0709b7ee72e4bc71ad07b7120acd117265ab51d0, access to
 variables within a spinlock-protected critical section had to be done
 through a volatile pointer, but that should no longer be necessary. 
 Michael Paquier  
  Robert Haas [Fri, 16 Oct 2015 18:12:20 +0000 (14:12 -0400)]     Remove volatile qualifiers from dynahash.c, shmem.c, and sinvaladt.c
  Prior to commit 
0709b7ee72e4bc71ad07b7120acd117265ab51d0, access to
 variables within a spinlock-protected critical section had to be done
 through a volatile pointer, but that should no longer be necessary. 
 Thomas Munro  
  Robert Haas [Fri, 16 Oct 2015 18:06:22 +0000 (14:06 -0400)]     Remove cautions about using volatile from spin.h.
  Commit 
0709b7ee72e4bc71ad07b7120acd117265ab51d0 obsoleted this comment
 but neglected to update it. 
 Thomas Munro  
  Robert Haas [Fri, 16 Oct 2015 15:58:27 +0000 (11:58 -0400)]     Prohibit parallel query when the isolation level is serializable.
  In order for this to be safe, the code which hands true serializability
 will need to taught that the SIRead locks taken by a parallel worker
 pertain to the same transaction as those taken by the parallel leader.
 Some further changes may be needed as well.  Until the necessary
 adaptations are made, don't generate parallel plans in serializable
 mode, and if a previously-generated parallel plan is used after
 serializable mode has been activated, run it serially. 
 This fixes a bug in commit 
7aea8e4f2daa4b39ca9d1309a0c4aadb0f7ed81b.  
  Robert Haas [Fri, 16 Oct 2015 15:56:02 +0000 (11:56 -0400)]     Rewrite interaction of parallel mode with parallel executor support.
  In the previous coding, before returning from ExecutorRun, we'd shut
 down all parallel workers.  This was dead wrong if ExecutorRun was
 called with a non-zero tuple count; it had the effect of truncating
 the query output.  To fix, give ExecutePlan control over whether to
 enter parallel mode, and have it refuse to do so if the tuple count
 is non-zero.  Rewrite the Gather logic so that it can cope with being
 called outside parallel mode. 
 Commit 
7aea8e4f2daa4b39ca9d1309a0c4aadb0f7ed81b is largely to blame
 for this problem, though this patch modifies some subsequently-committed
 code which relied on the guarantees it purported to make.  
  Robert Haas [Fri, 16 Oct 2015 15:48:48 +0000 (11:48 -0400)]     Mark more functions parallel-restricted or parallel-unsafe.
  Commit 
7aea8e4f2daa4b39ca9d1309a0c4aadb0f7ed81b was overoptimistic
 about the degree of safety associated with running various functions
 in parallel mode.  Functions that take a table name or OID as an
 argument are at least parallel-restricted, because the table might be
 temporary, and we currently don't allow parallel workers to touch
 temporary tables.  Functions that take a query as an argument are
 outright unsafe, because the query could be anything, including a
 parallel-unsafe query. 
 Also, the queue of pending notifications is backend-private, so adding
 to it from a worker doesn't behave correctly.  We could fix this by
 transferring the worker's queue of pending notifications to the master
 during worker cleanup, but that seems like more trouble than it's
 worth for now.  In addition to adjusting the pg_proc.h markings, also
 add an explicit check for this in async.c.  
  Robert Haas [Fri, 16 Oct 2015 15:37:19 +0000 (11:37 -0400)]     Fix a problem with parallel workers being unable to restore role.
  check_role() tries to verify that the user has permission to become the
 requested role, but this is inappropriate in a parallel worker, which
 needs to exactly recreate the master's authorization settings.  So skip
 the check in that case. 
 This fixes a bug in commit 
924bcf4f16d54c55310b28f77686608684734f42.  
  Robert Haas [Fri, 16 Oct 2015 15:31:23 +0000 (11:31 -0400)]     Invalidate caches after cranking up a parallel worker transaction.
  Starting a parallel worker transaction changes our notion of which XIDs
 are in-progress or committed, and our notion of the current command
 counter ID.  Therefore, our view of these caches prior to starting
 this transaction may no longer valid.  Defend against that by clearing
 them. 
 This fixes a bug in commit 
924bcf4f16d54c55310b28f77686608684734f42.  
  Michael Meskes [Fri, 16 Oct 2015 15:29:05 +0000 (17:29 +0200)]     Fix order of arguments in ecpg generated typedef command.
 
 
    Robert Haas [Fri, 16 Oct 2015 13:59:57 +0000 (09:59 -0400)]     Tighten up application of parallel mode checks.
  Commit 
924bcf4f16d54c55310b28f77686608684734f42 failed to enforce
 parallel mode checks during the commit of a parallel worker, because
 we exited parallel mode prior to ending the transaction so that we
 could pop the active snapshot.  Re-establish parallel mode during
 parallel worker commit.  Without this, it's far too easy for unsafe
 actions during the pre-commit sequence to crash the server instead of
 hitting the error checks as intended. 
 Just to be extra paranoid, adjust a couple of the sanity checks in
 xact.c to check not only IsInParallelMode() but also
 IsParallelWorker().  
  Robert Haas [Fri, 16 Oct 2015 13:53:34 +0000 (09:53 -0400)]     Transfer current command counter ID to parallel workers.
  Commit 
924bcf4f16d54c55310b28f77686608684734f42 correctly forbade
 parallel workers to modify the command counter while in parallel mode,
 but it inexplicably neglected to actually transfer the current command
 counter from leader to workers.  This can result in the workers seeing
 a different set of tuples from the leader, which is bad.  Repair.  
  Robert Haas [Fri, 16 Oct 2015 13:42:33 +0000 (09:42 -0400)]     Don't send protocol messages to a shm_mq that no longer exists.
  Commit 
2bd9e412f92bc6a68f3e8bcb18e04955cc35001d introduced a mechanism
 for relaying protocol messages from a background worker to another
 backend via a shm_mq.  However, there was no provision for shutting
 down the communication channel.  Therefore, a protocol message sent
 late in the shutdown sequence, such as a DEBUG message resulting from
 cranking up log_min_messages, could crash the server.  To fix, install
 an on_dsm_detach callback that disables sending messages to the shm_mq
 when the associated DSM is detached.  
  Tom Lane [Thu, 15 Oct 2015 17:46:09 +0000 (13:46 -0400)]     Fix NULL handling in datum_to_jsonb().
 
 The function failed to adhere to its specification that the "tcategory"
 argument should not be examined when the input value is NULL.  This
 resulted in a crash in some cases.  Per bug #13680 from Boyko Yordanov.
 
 In passing, re-pgindent some recent changes in jsonb.c, and fix a rather
 ungrammatical comment.
 
 Diagnosis and patch by Michael Paquier, cosmetic changes by me
 
 
    Robert Haas [Thu, 15 Oct 2015 17:16:03 +0000 (13:16 -0400)]     Revert "Have dtrace depend on object files directly, not objfiles.txt"
  This reverts commit 
73537828537239923a0f827a92b20502a3efa52d.  Per
 report from Tom Lane, this breaks parallel builds.  
  Robert Haas [Thu, 15 Oct 2015 17:00:40 +0000 (13:00 -0400)]     Allow FDWs to push down quals without breaking EvalPlanQual rechecks.
 
 This fixes a long-standing bug which was discovered while investigating
 the interaction between the new join pushdown code and the EvalPlanQual
 machinery: if a ForeignScan appears on the inner side of a paramaterized
 nestloop, an EPQ recheck would re-return the original tuple even if
 it no longer satisfied the pushed-down quals due to changed parameter
 values.
 
 This fix adds a new member to ForeignScan and ForeignScanState and a
 new argument to make_foreignscan, and requires changes to FDWs which
 push down quals to populate that new argument with a list of quals they
 have chosen to push down.  Therefore, I'm only back-patching to 9.5,
 even though the bug is not new in 9.5.
 
 Etsuro Fujita, reviewed by me and by Kyotaro Horiguchi.
 
 
    Alvaro Herrera [Thu, 15 Oct 2015 15:20:11 +0000 (12:20 -0300)]     Fix bogus comments
 
 Author: Amit Langote
 
 
    Bruce Momjian [Tue, 13 Oct 2015 22:25:32 +0000 (18:25 -0400)]     -- email subject limit -----------------------------------------
 -- gitweb summary limit --------------------------
 pg_upgrade:  reorder controldata checks to match program output
 
 Also improve comment for how float8_pass_by_value is used.
 
 Backpatch through 9.5
 
 
    Robert Haas [Tue, 13 Oct 2015 19:39:58 +0000 (15:39 -0400)]     Have dtrace depend on object files directly, not objfiles.txt
 
 Per Mark Johnston, this resolves a build error on FreeBSD related
 to the fact that dtrace is modifying the generated object files
 under the hood.  Consequently, without this, dtrace gets reinvoked
 at install time because the object files have been updated.  This
 is a pretty hacky fix, but it shouldn't hurt anything, and it's
 not clear that it's worth expending any more effort for a feature
 that not too many people are using.
 
 Patch by Mark Johnston.  This is arguably back-patchable as a bug
 fix to the build system, but I'm not certain enough of the
 consequences to try that.  Let's see what the buildfarm (and
 our packagers) think of this change on master first.
 
 
    Robert Haas [Tue, 13 Oct 2015 19:33:07 +0000 (15:33 -0400)]     Improve INSERT .. ON CONFLICT error message.
 
 Peter Geoghegan, reviewed by me.
 
 
    Tom Lane [Tue, 13 Oct 2015 15:21:33 +0000 (11:21 -0400)]     On Windows, ensure shared memory handle gets closed if not being used.
 
 Postmaster child processes that aren't supposed to be attached to shared
 memory were not bothering to close the shared memory mapping handle they
 inherit from the postmaster process.  That's mostly harmless, since the
 handle vanishes anyway when the child process exits -- but the syslogger
 process, if used, doesn't get killed and restarted during recovery from a
 backend crash.  That meant that Windows doesn't see the shared memory
 mapping as becoming free, so it doesn't delete it and the postmaster is
 unable to create a new one, resulting in failure to recover from crashes
 whenever logging_collector is turned on.
 
 Per report from Dmitry Vasilyev.  It's a bit astonishing that we'd not
 figured this out long ago, since it's been broken from the very beginnings
 of out native Windows support; probably some previously-unexplained trouble
 reports trace to this.
 
 A secondary problem is that on Cygwin (perhaps only in older versions?),
 exec() may not detach from the shared memory segment after all, in which
 case these child processes did remain attached to shared memory, posing
 the risk of an unexpected shared memory clobber if they went off the rails
 somehow.  That may be a long-gone bug, but we can deal with it now if it's
 still live, by detaching within the infrastructure introduced here to deal
 with closing the handle.
 
 Back-patch to all supported branches.
 
 Tom Lane and Amit Kapila
 
 
    Tom Lane [Mon, 12 Oct 2015 22:30:36 +0000 (18:30 -0400)]     Fix "pg_ctl start -w" to test child process status directly.
 
 pg_ctl start with -w previously relied on a heuristic that the postmaster
 would surely always manage to create postmaster.pid within five seconds.
 Unfortunately, that fails much more often than we would like on some of the
 slower, more heavily loaded buildfarm members.
 
 We have known for quite some time that we could remove the need for that
 heuristic on Unix by using fork/exec instead of system() to launch the
 postmaster.  This allows us to know the exact PID of the postmaster, which
 allows near-certain verification that the postmaster.pid file is the one
 we want and not a leftover, and it also lets us use waitpid() to detect
 reliably whether the child postmaster has exited or not.
 
 What was blocking this change was not wanting to rewrite the Windows
 version of start_postmaster() to avoid use of CMD.EXE.  That's doable
 in theory but would require fooling about with stdout/stderr redirection,
 and getting the handling of quote-containing postmaster switches to
 stay the same might be rather ticklish.  However, we realized that
 we don't have to do that to fix the problem, because we can test
 whether the shell process has exited as a proxy for whether the
 postmaster is still alive.  That doesn't allow an exact check of the
 PID in postmaster.pid, but we're no worse off than before in that
 respect; and we do get to get rid of the heuristic about how long the
 postmaster might take to create postmaster.pid.
 
 On Unix, this change means that a second "pg_ctl start -w" immediately
 after another such command will now reliably fail, whereas previously
 it would succeed if done within two seconds of the earlier command.
 Since that's a saner behavior anyway, it's fine.  On Windows, the case can
 still succeed within the same time window, since pg_ctl can't tell that the
 earlier postmaster's postmaster.pid isn't the pidfile it is looking for.
 To ensure stable test results on Windows, we can insert a short sleep into
 the test script for pg_ctl, ensuring that the existing pidfile looks stale.
 This hack can be removed if we ever do rewrite start_postmaster(), but that
 no longer seems like a high-priority thing to do.
 
 Back-patch to all supported versions, both because the current behavior
 is buggy and because we must do that if we want the buildfarm failures
 to go away.
 
 Tom Lane and Michael Paquier
 
 
    Noah Misch [Mon, 12 Oct 2015 03:53:35 +0000 (23:53 -0400)]     Use JsonbIteratorToken consistently in automatic variable declarations.
 
 Many functions stored JsonbIteratorToken values in variables of other
 integer types.  Also, standardize order relative to other declarations.
 Expect compilers to generate the same code before and after this change.
 
 
    Peter Eisentraut [Mon, 12 Oct 2015 01:44:27 +0000 (21:44 -0400)]     Fix whitespace
 
 
    Noah Misch [Mon, 12 Oct 2015 00:42:26 +0000 (20:42 -0400)]     Avoid scan-build warning about uninitialized htonl() arguments.
 
 Josh Kupershmidt
 
 
    Noah Misch [Mon, 12 Oct 2015 00:36:07 +0000 (20:36 -0400)]     Make prove_installcheck remove the old log directory, if any.
 
 prove_check already has been doing this.  Back-patch to 9.4, like the
 commit that introduced this logging.
 
 
    Robert Haas [Fri, 9 Oct 2015 23:03:44 +0000 (19:03 -0400)]     Speed up text sorts where the same strings occur multiple times.
 
 Cache strxfrm() blobs across calls made to the text SortSupport
 abbreviation routine.  This can speed up sorting if the same string
 needs to be abbreviated many times in a row.
 
 Also, cache the result of the previous strcoll() comparison, so that
 if we're asked to compare the same strings agin, we do need to call
 strcoll() again.
 
 Perhaps surprisingly, these optimizations don't seem to hurt even when
 they don't help.  memcmp() is really cheap compared to strcoll() or
 strxfrm().
 
 Peter Geoghegan, reviewed by me.
 
 
    Robert Haas [Fri, 9 Oct 2015 19:06:06 +0000 (15:06 -0400)]     Make abbreviated key comparisons for text a bit cheaper.
 
 If we do some byte-swapping while abbreviating, we can do comparisons
 using integer arithmetic rather than memcmp.
 
 Peter Geoghegan, reviewed and slightly revised by me.
 
 
    Robert Haas [Fri, 9 Oct 2015 18:31:04 +0000 (14:31 -0400)]     Remove set_latch_on_sigusr1 flag.
 
 This flag has proven to be a recipe for bugs, and it doesn't seem like
 it can really buy anything in terms of performance.  So let's just
 *always* set the process latch when we receive SIGUSR1 instead of
 trying to do it only when needed.
 
 Per my recent proposal on pgsql-hackers.
 
 
    Stephen Frost [Fri, 9 Oct 2015 14:49:02 +0000 (10:49 -0400)]     Handle append_rel_list in expand_security_qual
 
 During expand_security_quals, we take the security barrier quals on an
 RTE and create a subquery which evaluates the quals.  During this, we
 have to replace any variables in the outer query which refer to the
 original RTE with references to the columns from the subquery.
 
 We need to also perform that replacement for any Vars in the
 append_rel_list.
 
 Only backpatching to 9.5 as we only go through this process in 9.4 for
 auto-updatable security barrier views, which UNION ALL queries aren't.
 
 Discovered by Haribabu Kommi
 
 Patch by Dean Rasheed
 
 
    Tom Lane [Fri, 9 Oct 2015 14:12:03 +0000 (09:12 -0500)]     Fix uninitialized-variable bug.
  For some reason, neither of the compilers I usually use noticed the
 uninitialized-variable problem I introduced in commit 
7e2a18a9161fee7e.
 That's hardly a good enough excuse though.  Committing with brown paper bag
 on head. 
 In addition to putting the operations in the right order, move the
 declaration of "now" inside the loop; there's no need for it to be
 outside, and that does wake up older gcc enough to notice any similar
 future problem. 
 Back-patch to 9.4; earlier versions lack the time-to-SIGKILL stanza
 so there's no bug.  
  Robert Haas [Thu, 8 Oct 2015 17:21:03 +0000 (13:21 -0400)]     Fix typo in docs.
 
 Pallavi Sontakke
 
 
    Robert Haas [Thu, 8 Oct 2015 17:01:36 +0000 (13:01 -0400)]     Add BSWAP64 macro.
 
 This is like BSWAP32, but for 64-bit values.  Since we've got two of
 them now and they have use cases (like sortsupport) beyond CRCs, move
 the definitions to their own header file.
 
 Peter Geoghegan
 
 
    Robert Haas [Thu, 8 Oct 2015 16:29:25 +0000 (12:29 -0400)]     Hyphenate variable-length for consistency.
 
 We hyphenate "fixed-length" earlier in the same sentence, and overall we
 more often use "variable-length" rather than "variable length".
 
 Nikolay Shaplov
 
 
    Robert Haas [Thu, 8 Oct 2015 16:24:51 +0000 (12:24 -0400)]     Correct pg_indent to pgindent in various comments.
 
 David Christensen
 
 
    Andrew Dunstan [Wed, 7 Oct 2015 21:41:45 +0000 (17:41 -0400)]     Factor out encoding specific tests for json
 
 This lets us remove the large alternative results files for the main
 json and jsonb tests, which makes modifying those tests simpler for
 committers and patch submitters.
 
 Backpatch to 9.4 for jsonb and 9.3 for json.
 
 
    Tom Lane [Wed, 7 Oct 2015 20:12:05 +0000 (16:12 -0400)]     Improve documentation of the role-dropping process.
 
 In general one may have to run both REASSIGN OWNED and DROP OWNED to get
 rid of all the dependencies of a role to be dropped.  This was alluded to
 in the REASSIGN OWNED man page, but not really spelled out in full; and in
 any case the procedure ought to be documented in a more prominent place
 than that.  Add a section to the "Database Roles" chapter explaining this,
 and do a bit of wordsmithing in the relevant commands' man pages.
 
 
    Bruce Momjian [Wed, 7 Oct 2015 14:30:54 +0000 (10:30 -0400)]     docs:  add JSONB containment example of a key and empty object
 
 Backpatch through 9.5
 
 
    Bruce Momjian [Wed, 7 Oct 2015 13:42:26 +0000 (09:42 -0400)]     docs:  Map operator @> to the proper SGML escape for '>'
 
 Backpatch through 9.5
 
 
    Bruce Momjian [Wed, 7 Oct 2015 13:06:49 +0000 (09:06 -0400)]     docs:  clarify JSONB operator descriptions
 
 No catalog bump as the catalog changes are for SQL operator comments.
 
 Backpatch through 9.5
 
 
    Tom Lane [Tue, 6 Oct 2015 21:15:27 +0000 (17:15 -0400)]     Perform an immediate shutdown if the postpid file is removed.
 
 The postmaster now checks every minute or so (worst case, at most two
 minutes) that postmaster.pid is still there and still contains its own PID.
 If not, it performs an immediate shutdown, as though it had received
 SIGQUIT.
 
 The original goal behind this change was to ensure that failed buildfarm
 runs would get fully cleaned up, even if the test scripts had left a
 postmaster running, which is not an infrequent occurrence.  When the
 buildfarm script removes a test postmaster's $PGDATA directory, its next
 check on postmaster.pid will fail and cause it to exit.  Previously, manual
 intervention was often needed to get rid of such orphaned postmasters,
 since they'd block new test postmasters from obtaining the expected socket
 address.
 
 However, by checking postmaster.pid and not something else, we can provide
 additional robustness: manual removal of postmaster.pid is a frequent DBA
 mistake, and now we can at least limit the damage that will ensue if a new
 postmaster is started while the old one is still alive.
 
 Back-patch to all supported branches, since we won't get the desired
 improvement in buildfarm reliability otherwise.
 
 
    Robert Haas [Tue, 6 Oct 2015 19:45:02 +0000 (15:45 -0400)]     Remove more volatile qualifiers.
  Prior to commit 
0709b7ee72e4bc71ad07b7120acd117265ab51d0, access to
 variables within a spinlock-protected critical section had to be done
 through a volatile pointer, but that should no longer be necessary.
 This continues work begun in 
df4077cda2eae3eb4a5cf387da0c1e7616e73204 and 
6ba4ecbf477e0b25dd7bde1b0c4e07fc2da19348. 
 Thomas Munro and Michael Paquier  
  Bruce Momjian [Tue, 6 Oct 2015 01:19:16 +0000 (21:19 -0400)]     Have CREATE TABLE LIKE add OID column if any LIKEd table has one
 
 Also, process constraints for LIKEd tables at the end so an OID column
 can be referenced in a constraint.
 
 Report by Tom Lane
 
 
    Bruce Momjian [Tue, 6 Oct 2015 01:03:38 +0000 (21:03 -0400)]     to_number():  allow 'V' to divide by 10^(the number of digits)
 
 to_char('V') already multiplied in a similar manner.
 
 Report by Jeremy Lowery
 
 
    Bruce Momjian [Tue, 6 Oct 2015 00:56:38 +0000 (20:56 -0400)]     psql:  allow \pset C in setting the title, matches \C
 
 Report by David G. Johnston
 
 
    Bruce Momjian [Tue, 6 Oct 2015 00:51:46 +0000 (20:51 -0400)]     to_char(): Do not count negative sign as a digit for time values
 
 For time masks, like HH24, MI, SS, CC, MM, do not count the negative
 sign as part of the zero-padding length specified by the mask, e.g. have
 to_char('-4 years'::interval, 'YY') return '-04', not '-4'.
 
 Report by Craig Ringer
 
 
    Bruce Momjian [Mon, 5 Oct 2015 17:38:36 +0000 (13:38 -0400)]     docs:  update guidelines on when to use GIN and GiST indexes
 
 Report by Tomas Vondra
 
 Backpatch through 9.5