== PostgreSQL Weekly News - January 27 2013 == - Mailing list pgsql-announce

From David Fetter
Subject == PostgreSQL Weekly News - January 27 2013 ==
Date
Msg-id 20130128071136.GE5846@fetter.org
Whole thread Raw
List pgsql-announce
== PostgreSQL Weekly News - January 27 2013 ==

== PostgreSQL Jobs for January ==

http://archives.postgresql.org/pgsql-jobs/2013-01/threads.php

== PostgreSQL Local ==

The FOSDEM PGDay conference that will be held before FOSDEM in
Brussels, Belgium, on Feb 1st, 2013.
http://fosdem2013.pgconf.eu/

The first edition of the Australian PostgreSQL Day (PGDay.AU 2013)
will be held in Melbourne on February 4, 2013. Registration is free of
charge. Schedule and info:
http://2013.pgday.org.au/
Registration:
http://www.meetup.com/melpug

PyPgDay will be held on March 13th at the Santa Clara Convention
Center, the first day of PyCon.  Info here:
http://wiki.postgresql.org/wiki/PyPgDay2013

PGDay NYC 2013 will be held on March 22, 2013 in New York City.
http://pgday.nycpug.org/

PostgreSQL Session will be held on March 28th, 2013 in Paris,
France.  The Call for Papers is open.
http://www.postgresql-sessions.org/en/5/

PGCon 2013 will be held May 23-24 2013, in Ottawa at the University of
Ottawa.
http://www.pgcon.org/2013/

The 6th annual "Prague PostgreSQL Developers Day" conference,
organized by CSPUG (Czech and Slovak PostgreSQL Users Group), will be
held on May 30, 2013 at Faculty of Mathematics and Physics, Charles
University (Malostranske namesti 25, Prague).  The CfP is open until
April 14, 2013 <info AT p2d2 DOT cz>.  More information in Czech is at
http://www.p2d2.cz/

== PostgreSQL in the News ==

Planet PostgreSQL: http://planet.postgresql.org/

PostgreSQL Weekly News is brought to you this week by David Fetter

Submit news and announcements by Sunday at 3:00pm Pacific time.
Please send English language ones to david@fetter.org, German language
to pwn@pgug.de, Italian language to pwn@itpug.org.  Spanish language
to pwn@arpug.com.ar.

== Applied Patches ==

Alvaro Herrera pushed:

- Refactor ALTER some-obj RENAME implementation.  Remove duplicate
  implementations of catalog munging and miscellaneous privilege
  checks.  Instead rely on already existing data in objectaddress.c to
  do the work.  Author: KaiGai Kohei, changes by me.  Reviewed by:
  Robert Haas, Álvaro Herrera, Dimitri Fontaine
  http://git.postgresql.org/pg/commitdiff/765cbfdc9263bf7c90b9d1f1044c6950b8b7088c

- Improve concurrency of foreign key locking This patch introduces two
  additional lock modes for tuples: "SELECT FOR KEY SHARE" and "SELECT
  FOR NO KEY UPDATE".  These don't block each other, in contrast with
  already existing "SELECT FOR SHARE" and "SELECT FOR UPDATE".  UPDATE
  commands that do not modify the values stored in the columns that
  are part of the key of the tuple now grab a SELECT FOR NO KEY UPDATE
  lock on the tuple, allowing them to proceed concurrently with tuple
  locks of the FOR KEY SHARE variety.  Foreign key triggers now use
  FOR KEY SHARE instead of FOR SHARE; this means the concurrency
  improvement applies to them, which is the whole point of this patch.
  The added tuple lock semantics require some rejiggering of the
  multixact module, so that the locking level that each transaction is
  holding can be stored alongside its Xid.  Also, multixacts now need
  to persist across server restarts and crashes, because they can now
  represent not only tuple locks, but also tuple updates.  This means
  we need more careful tracking of lifetime of pg_multixact SLRU
  files; since they now persist longer, we require more infrastructure
  to figure out when they can be removed.  pg_upgrade also needs to be
  careful to copy pg_multixact files over from the old server to the
  new, or at least part of multixact.c state, depending on the
  versions of the old and new servers.  Tuple time qualification rules
  (HeapTupleSatisfies routines) need to be careful not to consider
  tuples with the "is multi" infomask bit set as being only locked;
  they might need to look up MultiXact values (i.e.  possibly do
  pg_multixact I/O) to find out the Xid that updated a tuple, whereas
  they previously were assured to only use information readily
  available from the tuple header.  This is considered acceptable,
  because the extra I/O would involve cases that would previously
  cause some commands to block waiting for concurrent transactions to
  finish.  Another important change is the fact that locking tuples
  that have previously been updated causes the future versions to be
  marked as locked, too; this is essential for correctness of foreign
  key checks.  This causes additional WAL-logging, also (there was
  previously a single WAL record for a locked tuple; now there are as
  many as updated copies of the tuple there exist.) With all this in
  place, contention related to tuples being checked by foreign key
  rules should be much reduced.  As a bonus, the old behavior that a
  subtransaction grabbing a stronger tuple lock than the parent
  (sub)transaction held on a given tuple and later aborting caused the
  weaker lock to be lost, has been fixed.  Many new spec files were
  added for isolation tester framework, to ensure overall behavior is
  sane.  There's probably room for several more tests.  There were
  several reviewers of this patch; in particular, Noah Misch and
  Andres Freund spent considerable time in it.  Original idea for the
  patch came from Simon Riggs, after a problem report by Joel
  Jacobson.  Most code is from me, with contributions from Marti
  Raudsepp, Alexander Shulgin, Noah Misch and Andres Freund.  This
  patch was discussed in several pgsql-hackers threads; the most
  important start at the following message-ids:
  AANLkTimo9XVcEzfiBR-ut3KVNDkjm2Vxh+t8kAmWjPuv@mail.gmail.com
  1290721684-sup-3951@alvh.no-ip.org
  1294953201-sup-2099@alvh.no-ip.org
  1320343602-sup-2290@alvh.no-ip.org
  1339690386-sup-8927@alvh.no-ip.org
  4FE5FF020200002500048A3D@gw.wicourts.gov
  4FEAB90A0200002500048B7D@gw.wicourts.gov
  http://git.postgresql.org/pg/commitdiff/0ac5ad5134f2769ccbaefec73844f8504c4d6182

- isolationtester: add a few fflush(stderr) calls.  The lack of them
  is causing failures in some BF members.  Per Andrew Dunstan.
  http://git.postgresql.org/pg/commitdiff/ca5db759b8b7f2574a34842fc9284e58618e15b9

- Make output identical to pg_resetxlog's
  http://git.postgresql.org/pg/commitdiff/6772c1e542569980e54db8ff87667811dc5f9e86

- Don't require oldestMultixact if server doesn't have it
  http://git.postgresql.org/pg/commitdiff/2494a9af4c8523f33ec78cd092d21a17780b4b5c

- Use the catversion to distinguish old/new clusters.  This makes 9.3
  -> 9.3 upgrades work when they cross the commit that added
  persistent multixacts; early 9.3 pg_controldata did not have the
  required oldestMultiXact line, and so would fail to upgrade.  per
  Bruce Momjian
  http://git.postgresql.org/pg/commitdiff/34da700405737be055d1b3d310af23a98da72e8e

- Redefine HEAP_XMAX_IS_LOCKED_ONLY Tuples marked SELECT FOR UPDATE in
  a cluster that's later processed by pg_upgrade would have a
  different infomask bit pattern than those produced by 9.3dev; that
  bit pattern was being seen as "dead" by HEAD (because they would
  fail the "is this tuple locked" test, and so the visibility rules
  would thing they're updated, even though there's no HEAP_UPDATED
  version of them).  In other words, some rows could silently
  disappear after pg_upgrade.  With this new definition, those tuples
  become visible again.  This is breakage resulting from my commit
  0ac5ad5134.
  http://git.postgresql.org/pg/commitdiff/74ebba84aeb6b0e6320f9b992527715f7e2ace8e

Robert Haas pushed:

- Add ddl_command_end support for event triggers.  Dimitri Fontaine,
  with slight changes by me
  http://git.postgresql.org/pg/commitdiff/841a5150c575ccd89e4b03aec66eeeefb21f3cbe

- Typo fixes.  Noted by Thom Brown.
  http://git.postgresql.org/pg/commitdiff/9917a491fd5e3a74e927292602c8adf0465ce575

- Fix CREATE EVENT TRIGGER syntax synopsis in documentation.  Dimitri
  Fontaine, per a report from Thom Brown
  http://git.postgresql.org/pg/commitdiff/4c97731928aadd6510a85a5979372bcc4a9f2d2d

- Fix a few small bugs in yesterday's event trigger patch.  Dimitri
  Fontaine
  http://git.postgresql.org/pg/commitdiff/ddef9a00289fcdb21651b9ea8f0ee9e9095bdab4

- Update comments and output for event_trigger regression test.
  http://git.postgresql.org/pg/commitdiff/601e2935e28735e6bc285794fd9d558e6735bb8e

- Further documentation tweaks for event triggers.  Per discussion
  between Dimitri Fontaine, myself, and others.
  http://git.postgresql.org/pg/commitdiff/f925c79b9f36c54b67053ade5ad225a75b8dc803

- pg_isready.  New command-line utility to test whether a server is
  ready to accept connections.  Phil Sorber, reviewed by Michael
  Paquier and Peter Eisentraut
  http://git.postgresql.org/pg/commitdiff/ac2e9673622591319d107272747a02d2c7f343bd

- Clarify that connection parameters aren't totally meaningless for
  PQping.  Per discussion with Phil Sorber.
  http://git.postgresql.org/pg/commitdiff/40ed59b2867fff9b1b4470e430c2d66732a05c2c

- Make it easy to time out pg_isready, and make the default 3 seconds.
  Along the way, add a missing line to the help message.  Phil Sorber,
  reviewed by Fujii Masao
  http://git.postgresql.org/pg/commitdiff/a37e83c0a99ecf50c64baffc6c88c3d805d6e822

Tom Lane pushed:

- Add infrastructure for storing a VARIADIC ANY function's VARIADIC
  flag.  Originally we didn't bother to mark FuncExprs with any
  indication whether VARIADIC had been given in the source text,
  because there didn't seem to be any need for it at runtime.
  However, because we cannot fold a VARIADIC ANY function's arguments
  into an array (since they're not necessarily all the same type), we
  do actually need that information at runtime if VARIADIC ANY
  functions are to respond unsurprisingly to use of the VARIADIC
  keyword.  Add the missing field, and also fix ruleutils.c so that
  VARIADIC ANY function calls are dumped properly.  Extracted from a
  larger patch that also fixes concat() and format() (the only two
  extant VARIADIC ANY functions) to behave properly when VARIADIC is
  specified.  This portion seems appropriate to review and commit
  separately.  Pavel Stehule
  http://git.postgresql.org/pg/commitdiff/75b39e79099fb1da43542e12698df717d1bd120f

- Fix failure to rotate postmaster log file for size reasons on
  Windows.  When we eliminated "unnecessary" wakeups of the syslogger
  process, we broke size-based logfile rotation on Windows, because on
  that platform data transfer is done in a separate thread.  While
  non-Windows platforms would recheck the output file size after every
  log message, Windows only did so when the control thread woke up for
  some other reason, which might be quite infrequent.  Per bug #7814
  from Tsunezumi.  Back-patch to 9.2 where the problem was introduced.
  Jeff Janes
  http://git.postgresql.org/pg/commitdiff/8556869f2f31ce6f5fab68de08fb1556a2134080

- Fix SPI documentation for new handling of ExecutorRun's count
  parameter.  Since 9.0, the count parameter has only limited the
  number of tuples actually returned by the executor.  It doesn't
  affect the behavior of INSERT/UPDATE/DELETE unless RETURNING is
  specified, because without RETURNING, the ModifyTable plan node
  doesn't return control to execMain.c for each tuple.  And we only
  check the limit at the top level.  While this behavioral change was
  unintentional at the time, discussion of bug #6572 led us to the
  conclusion that we prefer the new behavior anyway, and so we should
  just adjust the docs to match rather than change the code.
  Accordingly, do that.  Back-patch as far as 9.0 so that the docs
  match the code in each branch.
  http://git.postgresql.org/pg/commitdiff/2ddc600f8f0252a0864e85d5cc1eeb3b9687d7e9

- Fix concat() and format() to handle VARIADIC-labeled arguments
  correctly.  Previously, the VARIADIC labeling was effectively
  ignored, but now these functions act as though the array elements
  had all been given as separate arguments.  Pavel Stehule
  http://git.postgresql.org/pg/commitdiff/760f3c043ad4ee622b596d005ec31bb5e0322c4a

- Change plan caching to honor, not resist, changes in search_path.
  In the initial implementation of plan caching, we saved the active
  search_path when a plan was first cached, then reinstalled that path
  anytime we needed to reparse or replan.  The idea of that was to try
  to reselect the same referenced objects, in somewhat the same way
  that views continue to refer to the same objects in the face of
  schema or name changes.  Of course, that analogy doesn't bear close
  inspection, since holding the search_path fixed doesn't cope with
  object drops or renames.  Moreover sticking with the old path seems
  to create more surprises than it avoids.  So instead of doing that,
  consider that the cached plan depends on search_path, and force
  reparse/replan if the active search_path is different than it was
  when we last saved the plan.  This gets us fairly close to having
  "transparency" of plan caching, in the sense that the cached
  statement acts the same as if you'd just resubmitted the original
  query text for another execution.  There are still some corner cases
  where this fails though: a new object added in the search path
  schema(s) might capture a reference in the query text, but we'd not
  realize that and force a reparse.  We might try to fix that in the
  future, but for the moment it looks too expensive and complicated.
  http://git.postgresql.org/pg/commitdiff/0d5fbdc157a17abc379052f5099b1c29a33cebe2

- Fix plpython's handling of functions used as triggers on multiple
  tables.  plpython tried to use a single cache entry for a trigger
  function, but it needs a separate cache entry for each table the
  trigger is applied to, because there is table-dependent data in
  there.  This was done correctly before 9.1, but commit
  46211da1b84bc3537e799ee1126098e71c2428e8 broke it by simplifying the
  lookup key from "function OID and triggered table OID" to "function
  OID and is-trigger boolean".  Go back to using both OIDs as the
  lookup key.  Per bug report from Sandro Santilli.  Andres Freund
  http://git.postgresql.org/pg/commitdiff/08be00fabebfa5efb843c9464d994891d80121f5

- Make LATERAL implicit for functions in FROM.  The SQL standard does
  not have general functions-in-FROM, but it does allow UNNEST() there
  (see the <collection derived table> production), and the semantics
  of that are defined to include lateral references.  So spec
  compliance requires allowing lateral references within UNNEST() even
  without an explicit LATERAL keyword.  Rather than making UNNEST() a
  special case, it seems best to extend this flexibility to any
  function-in-FROM.  We'll still allow LATERAL to be written
  explicitly for clarity's sake, but it's now a noise word in this
  context.  In theory this change could result in a change in behavior
  of existing queries, by allowing what had been an outer reference in
  a function-in-FROM to be captured by an earlier FROM-item at the
  same level.  However, all pre-9.3 PG releases have a bug that causes
  them to match variable references to earlier FROM-items in
  preference to outer references (and then throw an error).  So no
  previously-working query could contain the type of ambiguity that
  would risk a change of behavior.  Per a suggestion from Andrew
  Gierth, though I didn't use his patch.
  http://git.postgresql.org/pg/commitdiff/2378d79ab29865f59245744beb8f04a3ce56d2ae

Peter Eisentraut pushed:

- doc: Fix declared number of columns in table.  This was broken in
  841a5150c575ccd89e4b03aec66eeeefb21f3cbe.
  http://git.postgresql.org/pg/commitdiff/21c87a0d46c8e9eb299d0fdfb75728c931452ddb

Bruce Momjian pushed:

- pg_upgrade:  remove --single-transaction usage.  With AtEOXact
  applied, --single-transaction makes pg_restore slower, and has the
  potential to require lock table configuration, so remove the
  argument.  Per suggestion from Tom.
  http://git.postgresql.org/pg/commitdiff/861ad67bd9546a8328ea31d0141406db16f4c57c

- pg_upgrade:  report failed cluster name.  When pg_upgrade can't find
  required pg_controldata information, report _which_ cluster is
  failing, with this message: The %s cluster lacks some required
  control information:
  http://git.postgresql.org/pg/commitdiff/bd6aca8a7713ecc0bed94dfb081bf24eda0c1f55

- pg_upgrade:  detect stale postmaster.pid lock files.  If the
  postmaster.pid lock file exists, try starting/stopping the cluster
  to check if the lock file is valid.  Per request from Tom.
  http://git.postgresql.org/pg/commitdiff/a9ceaa53be766a324e41953a78e8bd9fa408edf6

- doc:  correct sepgsql doc about permission checking of CASCADE.
  Backpatch to 9.2.  Patch from Kohei KaiGai
  http://git.postgresql.org/pg/commitdiff/9971f6f5172a8f9525459eb1da840cbc73e6f29f

- doc:  add mention of ssi read anomolies to mvcc docs.  From Jeff
  Davis, modified by Kevin Grittner
  http://git.postgresql.org/pg/commitdiff/56a6317bf54625c7fdade6cd1ab38178bba42448

- doc:  improve wording of "foreign data server" in file-fdw docs.
  Backpatch to 9.2 Shigeru HANADA
  http://git.postgresql.org/pg/commitdiff/7441b49d1930a56b20c8ab4bb3ecb9bcdb4878de

- docs:  In ecpg, clarify how username/password colon parameters are
  used.  Backpatch to 9.2.  Patch from Alan B
  http://git.postgresql.org/pg/commitdiff/88886c79cc4fc8d8f7c5b7304ad1f13508f5b025

- doc:  split search_path index entries into separate secondaries.
  Karl O. Pinc
  http://git.postgresql.org/pg/commitdiff/80c20fcf3df17309b3c131962045825f42e45bc7

- doc:  adjust search_path secondary index mention.  per Tom Lane
  http://git.postgresql.org/pg/commitdiff/0e93959a70ac6e7c7858d1d6fb00645e7540a1cc

- doc:  merge ecpg username/password example into C comment.
  Backpatch to 9.2, per Tom Lane
  http://git.postgresql.org/pg/commitdiff/d309be0fb7246cc2ebfbdcb2e4781f956c0d7d12

- doc: mention commit_delay is only honored if fsync is enabled.  per
  Tianyin Xu
  http://git.postgresql.org/pg/commitdiff/bb1e504951bbdb1931365b1c6d1b4e5f3a3043d1

- doc:  revert 80c20fcf3df17309b3c131962045825f42e45bc7 and
  0e93959a70ac6e7c7858d1d6fb00645e7540a1cc.  Revert patch that
  modified doc index mentions of search_path.  Per Peter Eisentraut.
  http://git.postgresql.org/pg/commitdiff/7c83619b50c8f8a6d75105636e3ca63a9d2eb7a9

- Issue ERROR if FREEZE mode can't be honored by COPY.  Previously
  non-honored FREEZE mode was ignored.  This also issues an
  appropriate error message based on the cause of the failure, per
  suggestion from Tom.  Additional regression test case added.
  http://git.postgresql.org/pg/commitdiff/4deb57de7dcfb66f850f16c0324731fdf3d86d09

- Allow CREATE TABLE IF EXIST so succeed if the schema is nonexistent
  Previously, CREATE TABLE IF EXIST threw an error if the schema was
  nonexistent.  This was done by passing 'missing_ok' to the function
  that looks up the schema oid.
  http://git.postgresql.org/pg/commitdiff/7e2322dff30c04d90c0602d2b5ae24b4881db88b

- Update LookupExplicitNamespace() comments;  commit message update.
  Also, commit 7e2322dff30c04d90c0602d2b5ae24b4881db88b affected DROP
  TABLE IF EXISTS, not CREATE TABLE IF EXISTS.
  http://git.postgresql.org/pg/commitdiff/51cfb87ae235ffc875946bcb6cb8404fe97cbb9b

- Update comments in new DROP IF EXISTS code; commit message update.
  DROP IF EXISTS with a missing schema in commit
  7e2322dff30c04d90c0602d2b5ae24b4881db88b applies not only to tables,
  but to DROP IF EXISTS with missing schemas for indexes, views,
  sequences, and foreign tables.  Yeah!
  http://git.postgresql.org/pg/commitdiff/8865fe0ad3e4260db0e67e2064200d96c0999fa0

Heikki Linnakangas pushed:

- Fix more issues with cascading replication and timeline switches.
  When a standby server follows the master using WAL archive, and it
  chooses a new timeline (recovery_target_timeline='latest'), it only
  fetches the timeline history file for the chosen target timeline,
  not any other history files that might be missing from pg_xlog. For
  example, if the current timeline is 2, and we choose 4 as the new
  recovery target timeline, the history file for timeline 3 is not
  fetched, even if it's part of this server's history. That's enough
  for the standby itself - the history file for timeline 4 includes
  timeline 3 as well - but if a cascading standby server wants to
  recover to timeline 3, it needs the history file. To fix, when a new
  recovery target timeline is chosen, try to copy any missing history
  files from the archive to pg_xlog between the old and new target
  timeline.  A second similar issue was with the WAL files. When a
  standby recovers from archive, and it reaches a segment that
  contains a switch to a new timeline, recovery fetches only the WAL
  file labelled with the new timeline's ID. The file from the new
  timeline contains a copy of the WAL from the old timeline up to the
  point where the switch happened, and recovery recovers it from the
  new file. But in streaming replication, walsender only tries to read
  it from the old timeline's file. To fix, change walsender to read it
  from the new file, so that it behaves the same as recovery in that
  sense, and doesn't try to open the possibly nonexistent file with
  the old timeline's ID.
  http://git.postgresql.org/pg/commitdiff/990fe3c4edfdabf4f56aa9a403a11f53006d0dd7

- Implement pg_unreachable() on MSVC.
  http://git.postgresql.org/pg/commitdiff/52906f175a05a4e7e5e4a0e6021c32b1bfb221cf

- Also fix rotation of csvlog on Windows.  Backpatch to 9.2, like the
  previous fix.
  http://git.postgresql.org/pg/commitdiff/168d315703287989fd9dab0badb212c529e88691

- Add some randomness to the choice of which GiST page to insert to.
  When descending the tree for an insert, and there are multiple
  equally good pages we could insert to, make the choice in random.
  Previously, we would always choose the tuple with lowest offset
  number. That meant that when two non-leaf pages overlap - in the
  extreme case they might have exactly the same key - all but the
  first such page went unused. That wasn't optimal for space usage; if
  you deleted some tuples from the non-first pages, the space would
  never be reused.  With this patch, the other pages are sometimes
  chosen too, although there's still a heavy bias towards low-offset
  tuples, so that we don't lose cache locality when doing a lot of
  inserts with similar keys.  Original idea by Alexander Korotkov,
  although this patch version was written by me and copy-edited by Tom
  Lane.
  http://git.postgresql.org/pg/commitdiff/ba1cc6501e98aee7d43098b032d6656f243bca5b

- Add prosecdef to \df+ output.  Jon Erdman, reviewed by Phil Sorber
  and Stephen Frost.
  http://git.postgresql.org/pg/commitdiff/89368676273a4455a20eea61b8c2f30190a223ec

Andrew Dunstan pushed:

- Gitignore vcxproj files.  Per request from Craig Ringer.
  http://git.postgresql.org/pg/commitdiff/eaf764842eb2fb755096a352be813ce61d94d249

- Use correct output device for Windows prompts.  This ensures that
  mapping of non-ascii prompts to the correct code page occurs.  Bug
  report and original patch from Alexander Law, reviewed and reworked
  by Noah Misch.  Backpatch to all live branches.
  http://git.postgresql.org/pg/commitdiff/1068771abfeec148a9c1ce4782785bddc1982070

Simon Riggs pushed:

- Docs shouldn't say HOT Standby.  Not an acronym.  Jeff Janes
  http://git.postgresql.org/pg/commitdiff/f64315c6e67e8f37e61bdbd5cb27248f2f6050da

- Fix rare missing cancellations in Hot Standby.  The machinery around
  XLOG_HEAP2_CLEANUP_INFO failed to correctly pass through the
  necessary information on latestRemovedXid, avoiding cancellations in
  some infrequent concurrent update/cleanup scenarios.  Backpatchable
  fix to 9.0 Detailed bug report and fix by Noah Misch, backpatchable
  version by me.
  http://git.postgresql.org/pg/commitdiff/5c54f63fd66973c32f6e96333d3bee1ba3669563

Magnus Hagander pushed:

- Make pg_dump exclude unlogged table data on hot standby slaves.
  Noted by Joe Van Dyk
  http://git.postgresql.org/pg/commitdiff/be926474be57ae73ae2052b968fd785a0096514e

Michael Meskes pushed:

- Made ecpglib use translated messages.  Bug reported and fixed by
  Chen Huajun chenhj AT cn DOT fujitsu DOT com.
  http://git.postgresql.org/pg/commitdiff/96bb29dc444f2b7fc8fbddae4fd7fe25d6544665

== Rejected Patches (for now) ==

No one was disappointed this week :-)

== Pending Patches ==

Ian Lawrence Barwick sent in a patch to fix an infelicity in psql's \s
with absolute path names.

Amit Kapila sent in two more revisions of a patch to improve
performance by reducing the volume of WAL for an update operation.

Amit Kapila sent in another revision of a patch to compute max LSN of
data pages.

Jeff Davis sent in another revision of a patch to remove
PD_ALL_VISIBLE.

Josh Kupershmidt sent in a patch to fix pg_ctl with relative paths.

David Fetter sent in a patch on behalf of Andrew (RhodiumToad) Gierth
to clean up the API in addRangeTableEntryForFunction in preparation
for adding WITH ORDINALITY to UNNEST per SQL:2011 and to other
functions for consistency.

David Fetter sent in a patch on behalf of Andrew (RhodiumToad) Gierth
to add WITH ORDINALITY to UNNEST and other functions in the FROM
clause.

Amit Kapila sent in two more revisions of a patch to enable changing
postgresql.conf via SQL.

Michael Paquier sent in two more revisions of a patch to overhaul
recovery.conf.

Heikki Linnakangas and Alexander Korotkov traded patches to enable
indexing regexes which can be expressed as deterministic finite
automata.

Etsuro Fujita sent in another revision of a patch to add input and
output filtering for COPY.

Jeevan Chalke sent in another revision of a patch to fix an infelicity
in the interaction of unlogged tables and GiST indexing.

Phil Sorber sent in a patch to add a Makefile dependency in
bin/scripts for libpgport.

Pavel Stehule sent in a patch to make --echo-hidden work for \sf in
psql.

Jeff Janes sent in a patch to fix the capitalization in bgwriter's
references to hot standby.

Craig Ringer and Noah Misch traded patches to make MS Visual Studio
2012 work to compile PostgreSQL.

Steve Singer and Andres Freund traded patches to add logical changeset
generation.

Hari Babu sent in a patch to add an option to pass a connection string
to pg_basebackup.

Heikki Linnakangas and Tom Lane traded patches to fix bloating in
GiST indexes.

Jameison Martin sent in another revision of a patch to optimize the
case of many trailing NULLs in a table.

Xi Wang sent in a patch to fix x + y < x overflow checks which icc
mis-handles with wriggle room from the C standard.

Xi Wang sent in a patch to fix x +1 < x overflow checks.

Xi Wang sent in a patch to fix overflow checks in repeat().

Simon Riggs sent in a patch to skip checkpoint in 'pg_ctl promote -m
fast'.

Kevin Grittner sent in another revision of a patch to implement
materialized views.

Michael Paquier sent in another revision of a patch to implement
REINDEX CONCURRENTLY.

Alvaro Herrera sent in a patch to set the priority for auto-wraparound
tables higher than others.

Jeff Davis sent in another revision of a patch to enable page
checksums.

Dhruv Ahuja sent in a patch to change the pg_ctl promote exit status.

Hannu Krosing sent in a WIP patch to solve the typeio function
recursion problem in PL/python by simply testing if the function we
are currently in is a type-io function (fn_oid ==
argTypeStruct->typoutput ... )

Andrew Dunstan sent in another revision of a patch to implement the
JSON API.

Marko (johto) Tiikkaja sent in another revision of a patch to allow
PL/pgsql to check for STRICT-ness in PL/pgsql SELECTs.

Satoshi Nagayasu sent in another revision of a patch to upgrade
pgbench to work better in 64-bit environments.

KaiGai Kohei sent in another revision of a patch to implement
OAT_POST_ALTER object access hooks.

Pavan Deolasee sent in another revision of a patch to set the
visibility map in VACUUM's second phase.

Marko (johto) Tiikkaja sent in two more revisions of a patch to add an
option to pg_dump to pretty-print views.

Dimitri Fontaine sent in another revision of a patch to add in-catalog
Extension Scripts and Control parameters.

Tatsuo Ishii sent in another revision of a patch to allow writing only
aggregates to the pgbench log.

Peter Geoghegan sent in another revision of a patch to make a firm
recommendation about the value of commit_delay.



pgsql-announce by date:

Previous
From: dmp
Date:
Subject: MyJSQLView Version 3.41 Released
Next
From: Joe Abbate
Date:
Subject: Pyrseas 0.6.1 is now available