1. 01 Sep, 2012 6 commits
    • Bruce Momjian's avatar
      Revert doc patch 30555798 as the values · 53fa0c6d
      Bruce Momjian authored
      are sometimes signed, sometimes unsigned.
      53fa0c6d
    • Tom Lane's avatar
      Fix broken link in installation.sgml. · b8a4093b
      Tom Lane authored
      Linking to other parts of the manual doesn't work when building the
      standalone INSTALL document.
      b8a4093b
    • Robert Haas's avatar
      e8d6c98c
    • Tom Lane's avatar
      More documentation updates for LATERAL. · 06310178
      Tom Lane authored
      Extend xfunc.sgml's discussion of set-returning functions to show an
      example of using LATERAL, and recommend that over putting SRFs in the
      targetlist.
      
      In passing, reword func.sgml's section on set-returning functions so
      that it doesn't claim that the functions listed therein are all the
      built-in set-returning functions.  That hasn't been true for a long
      time, and trying to make it so doesn't seem like it would be an
      improvement.  (Perhaps we should rename that section?)
      
      Both per suggestions from Merlin Moncure.
      06310178
    • Peter Eisentraut's avatar
      psql: Reduce compatibility warning · 5cad0245
      Peter Eisentraut authored
      Only warn when connecting to a newer server, since connecting to older
      servers works pretty well nowadays.  Also update the documentation a
      little about current psql/server compatibility expectations.
      5cad0245
    • Andrew Dunstan's avatar
      Restore setting of _USE_32BIT_TIME_T to 32 bit MSVC builds. · ef58b87d
      Andrew Dunstan authored
      This was removed in commit cd004067,
      we're not quite sure why, but there have been reports of crashes due
      to AS Perl being built with it when we are not, and it certainly
      seems like the right thing to do. There is still some uncertainty
      as to why it sometimes fails and sometimes doesn't.
      
      Original patch from Owais Khani, substantially reworked and
      extended by Andrew Dunstan.
      ef58b87d
  2. 31 Aug, 2012 7 commits
  3. 30 Aug, 2012 22 commits
  4. 29 Aug, 2012 4 commits
  5. 28 Aug, 2012 1 commit
    • Alvaro Herrera's avatar
      Split heapam_xlog.h from heapam.h · 21c09e99
      Alvaro Herrera authored
      The heapam XLog functions are used by other modules, not all of which
      are interested in the rest of the heapam API.  With this, we let them
      get just the XLog stuff in which they are interested and not pollute
      them with unrelated includes.
      
      Also, since heapam.h no longer requires xlog.h, many files that do
      include heapam.h no longer get xlog.h automatically, including a few
      headers.  This is useful because heapam.h is getting pulled in by
      execnodes.h, which is in turn included by a lot of files.
      21c09e99